From 4c3522a63c827f25e015c4e21f0611cb7c94e411 Mon Sep 17 00:00:00 2001 From: E44 <129310925+programmer-44@users.noreply.github.com> Date: Sat, 22 Nov 2025 13:16:13 +0100 Subject: [PATCH] refactor(control): remove unnecessary html syntax in blackout --- control/frontend/src/ts/api_handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control/frontend/src/ts/api_handler.ts b/control/frontend/src/ts/api_handler.ts index 063f0f1..85c7a5b 100644 --- a/control/frontend/src/ts/api_handler.ts +++ b/control/frontend/src/ts/api_handler.ts @@ -111,7 +111,7 @@ export async function show_blackscreen(ip: string): Promise { method: 'PATCH', headers: { 'content-type': 'application/json' }, body: JSON.stringify({ - html: `
` + html: `` }) }; await request_display(ip, '/showHTML', options);