@industry-theme/principal-view-panels 0.12.59 → 0.12.60
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
|
@@ -100040,9 +100040,9 @@ const StoryboardListPanel = ({
|
|
|
100040
100040
|
let approved = 0;
|
|
100041
100041
|
let draft = 0;
|
|
100042
100042
|
for (const node2 of canvas.nodes) {
|
|
100043
|
-
const
|
|
100044
|
-
if (!
|
|
100045
|
-
const status =
|
|
100043
|
+
const otel = node2.otel;
|
|
100044
|
+
if (!otel) continue;
|
|
100045
|
+
const status = otel.status ?? "draft";
|
|
100046
100046
|
if (status === "implemented") {
|
|
100047
100047
|
implemented++;
|
|
100048
100048
|
} else if (status === "approved") {
|