From b3317df7077450c2ab9a7de61aee9c870905a73b Mon Sep 17 00:00:00 2001 From: timvisee Date: Wed, 23 Apr 2025 10:46:26 +0200 Subject: [PATCH] Move main notice on top of text --- app/ui/intro.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/ui/intro.js b/app/ui/intro.js index dc1a1627..dbdd3dc1 100644 --- a/app/ui/intro.js +++ b/app/ui/intro.js @@ -5,7 +5,7 @@ module.exports = function intro(state) { const notice = state.WEB_UI.MAIN_NOTICE_HTML ? html`

${raw(state.WEB_UI.MAIN_NOTICE_HTML)}

@@ -16,6 +16,7 @@ module.exports = function intro(state) { + ${notice}

${state.translate('introTitle')} @@ -23,7 +24,6 @@ module.exports = function intro(state) {

${state.translate('introDescription')}

- ${notice}

`;