@industry-theme/backlogmd-kanban-panel 1.2.4 → 1.2.5
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/dist/panels.bundle.js
CHANGED
|
@@ -8483,7 +8483,7 @@ class Core {
|
|
|
8483
8483
|
throw new Error("Core not initialized. Call initialize() or initializeLazy() first.");
|
|
8484
8484
|
}
|
|
8485
8485
|
}
|
|
8486
|
-
const version = "1.2.
|
|
8486
|
+
const version = "1.2.5";
|
|
8487
8487
|
const packageJson = {
|
|
8488
8488
|
version
|
|
8489
8489
|
};
|
|
@@ -11135,16 +11135,12 @@ const KanbanPanel = ({
|
|
|
11135
11135
|
if (!events2) return;
|
|
11136
11136
|
const unsubscribeSelected = events2.on("task:selected", (event) => {
|
|
11137
11137
|
if (event.source === "kanban-panel") return;
|
|
11138
|
-
console.log("[KanbanPanel] Received task:selected event:", event.source, event.payload);
|
|
11139
11138
|
const payload = event.payload;
|
|
11140
11139
|
if (payload == null ? void 0 : payload.taskId) {
|
|
11141
11140
|
const task = getTaskById(payload.taskId);
|
|
11142
|
-
console.log("[KanbanPanel] getTaskById result:", payload.taskId, "->", task ? `found: ${task.title}` : "NOT FOUND");
|
|
11143
11141
|
if (task) {
|
|
11144
|
-
console.log("[KanbanPanel] Calling handleTaskClick (same as user click)");
|
|
11145
11142
|
handleTaskClick(task);
|
|
11146
11143
|
} else {
|
|
11147
|
-
console.log("[KanbanPanel] Task not found, only setting selectedTaskId (NO navigation)");
|
|
11148
11144
|
setSelectedTaskId(payload.taskId);
|
|
11149
11145
|
}
|
|
11150
11146
|
}
|