taskplane 0.23.11 → 0.23.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dashboard/public/app.js +12 -2
- package/package.json +1 -1
package/dashboard/public/app.js
CHANGED
|
@@ -1120,8 +1120,18 @@ function renderNoBatch() {
|
|
|
1120
1120
|
|
|
1121
1121
|
function ensureContentPanels() {
|
|
1122
1122
|
if (noBatchRendered) {
|
|
1123
|
-
// A live batch started — restore panels
|
|
1124
|
-
|
|
1123
|
+
// A live batch started — restore panels without full page reload.
|
|
1124
|
+
// Reset the no-batch state and re-show content panels.
|
|
1125
|
+
noBatchRendered = false;
|
|
1126
|
+
const $lanesPanel = document.getElementById("lanes-tasks-panel");
|
|
1127
|
+
const $mergePanel = document.getElementById("merge-panel");
|
|
1128
|
+
if ($lanesPanel) $lanesPanel.style.display = "";
|
|
1129
|
+
if ($mergePanel) $mergePanel.style.display = "";
|
|
1130
|
+
if ($errorsPanel) $errorsPanel.style.display = "";
|
|
1131
|
+
$historyPanel.style.display = "none";
|
|
1132
|
+
viewingHistoryId = null;
|
|
1133
|
+
// Re-render with current data
|
|
1134
|
+
if (currentData) render(currentData);
|
|
1125
1135
|
}
|
|
1126
1136
|
}
|
|
1127
1137
|
|