From 9d7ec613db40ec364ced131e1a75eaed88f88230 Mon Sep 17 00:00:00 2001 From: kjs Date: Tue, 17 Mar 2026 14:31:45 +0900 Subject: [PATCH] fix: update default visibility settings for buttons in V2SplitPanelLayoutConfigPanel - Changed default state for the search and add buttons in both left and right panels to false. - Updated the default state for the edit button in both panels to true. - Updated the default state for the delete button in both panels to true. These adjustments aim to improve the initial configuration experience for users by setting more appropriate defaults for button visibility. --- .../V2SplitPanelLayoutConfigPanel.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/frontend/components/v2/config-panels/V2SplitPanelLayoutConfigPanel.tsx b/frontend/components/v2/config-panels/V2SplitPanelLayoutConfigPanel.tsx index 7895a3d5..c788612e 100644 --- a/frontend/components/v2/config-panels/V2SplitPanelLayoutConfigPanel.tsx +++ b/frontend/components/v2/config-panels/V2SplitPanelLayoutConfigPanel.tsx @@ -1125,28 +1125,28 @@ export const V2SplitPanelLayoutConfigPanel: React.FC<
updateLeftPanel({ showSearch: checked }) } /> updateLeftPanel({ showAdd: checked }) } /> updateLeftPanel({ showEdit: checked }) } /> updateLeftPanel({ showDelete: checked }) } @@ -1574,28 +1574,28 @@ export const V2SplitPanelLayoutConfigPanel: React.FC<
updateRightPanel({ showSearch: checked }) } /> updateRightPanel({ showAdd: checked }) } /> updateRightPanel({ showEdit: checked }) } /> updateRightPanel({ showDelete: checked }) }