diff --git a/public/cuelist_1009.json b/public/cuelist_1009.json
index 17c8154..a3bcb33 100644
--- a/public/cuelist_1009.json
+++ b/public/cuelist_1009.json
@@ -112,6 +112,13 @@
"lightCue":"fade_out_light",
"clientCue":"Q103",
"debug":true
+ },{
+ "id": 0.3,
+ "name": "CQ104",
+ "type": "debug",
+ "description": "debug-print",
+ "clientCue":"Q104",
+ "debug":true
}
]
}
diff --git a/src/App.jsx b/src/App.jsx
index 3ec3323..c056671 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -374,8 +374,9 @@ function App() {
{log?.timestamp} |
>}
+
-
+
{cuelist?.filter(c => c.clientCue && !c.debug).map((c, index) => (
|