We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 429390a commit 8cdc25cCopy full SHA for 8cdc25c
.github/workflows/html-render.yml
@@ -266,6 +266,14 @@ setTimeout(() => {{
266
pinState.configured = true;
267
pinState.value = '1234'; // Simulated unlocked state
268
applyServerData({sample_json}, "dev:client001");
269
+
270
+// Force hide the PIN modal for the unlocked preview
271
+setTimeout(() => {{
272
+ const modal = document.getElementById('pinModal');
273
+ if (modal) {{
274
+ modal.classList.add('hidden');
275
+ }}
276
+}}, 200);
277
''')
278
279
# For serial monitor, inject sample log data
0 commit comments