fix: manual page dataset selector uses dataset_id not ds.id
This commit is contained in:
@@ -65,9 +65,9 @@
|
||||
<label style="font-weight:600;font-size:0.9rem;">📁 数据集</label>
|
||||
<select id="datasetSelect" style="width:100%;padding:0.4rem;border:1px solid #ccc;border-radius:4px;margin-top:0.25rem;">
|
||||
<option value="">-- 选择 --</option>
|
||||
{% for ds in datasets %}
|
||||
<option value="{{ ds.id }}">{{ ds.id }} ({{ ds.metadata.row_count|default:"?" }} rows)</option>
|
||||
{% endfor %}
|
||||
{% for ds in datasets %}
|
||||
<option value="{{ ds.dataset_id }}">{{ ds.dataset_id }} ({{ ds.row_count|default:"?" }} rows, {{ ds.file_count|default:"?" }} files)</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
<button class="btn btn-primary" id="runAllBtn" onclick="runAll()" style="margin-top:1rem;">▶▶ 全部执行</button>
|
||||
|
||||
Reference in New Issue
Block a user