From 6aebf99ebc9a2b446add99084a9841b56a3f3da9 Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Fri, 29 Dec 2023 16:22:50 +0100 Subject: [PATCH] hotfix: panel style --- website/src/settings.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/settings.mjs b/website/src/settings.mjs index 6dbf0dff..f3ceeb6d 100644 --- a/website/src/settings.mjs +++ b/website/src/settings.mjs @@ -57,7 +57,7 @@ export function useSettings() { isLineWrappingEnabled: [true, 'true'].includes(state.isLineWrappingEnabled) ? true : false, isFlashEnabled: [true, 'true'].includes(state.isFlashEnabled) ? true : false, fontSize: Number(state.fontSize), - panelPosition: state.activeFooter !== '' ? state.panelPosition : 'right', + panelPosition: state.activeFooter !== '' ? state.panelPosition : 'bottom', // <-- keep this 'bottom' where it is! userPatterns: JSON.parse(state.userPatterns), }; }