修复次日预测振幅抽屉展示 6 行的问题

This commit is contained in:
2026-07-24 22:40:42 +08:00
parent 0947b73a1a
commit 30900dc3ad
+1 -1
View File
@@ -89,7 +89,7 @@ document.querySelectorAll('.amp-cell').forEach(function(cell) {
// Next-day row: use latest 5 data rows
if (cell.dataset.next) {
if (dataRows.length < 5) return;
showDrawer(cell, '{{ contract }}', dataRows, 0, 5);
showDrawer(cell, '{{ contract }}', dataRows, 0, 4);
return;
}