@industry-theme/backlogmd-kanban-panel 1.2.3 → 1.2.4
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.4";
|
|
8487
8487
|
const packageJson = {
|
|
8488
8488
|
version
|
|
8489
8489
|
};
|
|
@@ -11135,12 +11135,16 @@ 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);
|
|
11138
11139
|
const payload = event.payload;
|
|
11139
11140
|
if (payload == null ? void 0 : payload.taskId) {
|
|
11140
11141
|
const task = getTaskById(payload.taskId);
|
|
11142
|
+
console.log("[KanbanPanel] getTaskById result:", payload.taskId, "->", task ? `found: ${task.title}` : "NOT FOUND");
|
|
11141
11143
|
if (task) {
|
|
11144
|
+
console.log("[KanbanPanel] Calling handleTaskClick (same as user click)");
|
|
11142
11145
|
handleTaskClick(task);
|
|
11143
11146
|
} else {
|
|
11147
|
+
console.log("[KanbanPanel] Task not found, only setting selectedTaskId (NO navigation)");
|
|
11144
11148
|
setSelectedTaskId(payload.taskId);
|
|
11145
11149
|
}
|
|
11146
11150
|
}
|