From 8639eafbf791d6299c04e746399f35ef8364eae6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Prie=C3=9Fnitz?= Date: Wed, 3 Dec 2025 21:46:40 +0100 Subject: [PATCH] [deploy] --- src/web/routes/dashboard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/routes/dashboard.ts b/src/web/routes/dashboard.ts index e40ced1..5f6ed27 100644 --- a/src/web/routes/dashboard.ts +++ b/src/web/routes/dashboard.ts @@ -2538,7 +2538,7 @@ router.get('/', (req, res) => { function parseRegisterFields(raw) { return (raw || '') - .split('\n') + .split('\\n') .map((l, idx) => { const parts = l.split('|').map((p) => p.trim()); const label = parts[0];