From f989dd8f3ad77aae28bfd854351bca76fd398b77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Numbus?= Date: Mon, 25 May 2026 17:04:37 +0200 Subject: [PATCH] Added quotes to live.yaml. --- web/pages/preparation.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/web/pages/preparation.html b/web/pages/preparation.html index 2ecb51c..080db16 100644 --- a/web/pages/preparation.html +++ b/web/pages/preparation.html @@ -53,7 +53,7 @@ console.log("Discovery started with:", data); const payload = { - internationalisation: { + internationalization: { language: data[1].language, country: data[1].country, time_zone: data[1].timeZone @@ -77,7 +77,12 @@ const response = await fetch('/discovery', { method: 'POST', headers: { 'Content-Type': 'text/yaml' }, - body: jsyaml.dump(payload, { quotingType: '"', forceQuotes: true }) + body: jsyaml.dump(payload, { + quotingType: '"', + styles: { + '!!str': 'double' + } + }) }); if (response.ok) {