From 4b9b10d65b330637bdb220fbe3f1317aa2167894 Mon Sep 17 00:00:00 2001 From: Develer Date: Mon, 1 Dec 2025 18:45:14 +0100 Subject: [PATCH] move add button --- .../PanelDataPane/QueryTransformList.tsx | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/public/app/features/dashboard-scene/panel-edit/PanelDataPane/QueryTransformList.tsx b/public/app/features/dashboard-scene/panel-edit/PanelDataPane/QueryTransformList.tsx index 7f7fc9500f2..e26e5535390 100644 --- a/public/app/features/dashboard-scene/panel-edit/PanelDataPane/QueryTransformList.tsx +++ b/public/app/features/dashboard-scene/panel-edit/PanelDataPane/QueryTransformList.tsx @@ -114,13 +114,17 @@ export const QueryTransformList = memo( ))} )} + +
+ +
- -
- -
); } @@ -151,11 +155,9 @@ const getStyles = (theme: GrafanaTheme2) => { marginTop: theme.spacing(2), }, }), - actions: css({ - padding: theme.spacing(2), - borderTop: `1px solid ${theme.colors.border.weak}`, - background: theme.colors.background.canvas, - flexShrink: 0, + addButton: css({ + marginTop: theme.spacing(2), + paddingTop: theme.spacing(2), }), }; };