From 40520c0ab29be28c1dbdef8c465bfebdd026e0f9 Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Thu, 4 Apr 2024 00:21:18 +0200 Subject: [PATCH] fix: avoid jumping headers when adding/removing buttons --- webui/src/ui/Layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/src/ui/Layout.tsx b/webui/src/ui/Layout.tsx index 8f36dfc..790af49 100644 --- a/webui/src/ui/Layout.tsx +++ b/webui/src/ui/Layout.tsx @@ -43,7 +43,7 @@ export function LayoutHeader({ children }: PropsWithChildren) { } export function LayoutTitle({ children }: PropsWithChildren) { - return
{children}
; + return
{children}
; } export function LayoutContent({ children }: PropsWithChildren) {