From ab74852fc9ec852b1b8e4dc5f750c476f705a64f Mon Sep 17 00:00:00 2001 From: Staton Hysell <101748563+staton-hyse11@users.noreply.github.com> Date: Tue, 11 Feb 2025 13:16:19 -0500 Subject: [PATCH] PanelEdit: Align chevron direction (#100386) Adjusted the collapsable section chevron + point down when closed + point up when expanded --- .../dashboard/components/PanelEditor/OptionsPaneCategory.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategory.tsx b/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategory.tsx index 2540fe59a60..8e284c59e11 100644 --- a/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategory.tsx +++ b/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategory.tsx @@ -131,7 +131,7 @@ export const OptionsPaneCategory = React.memo( variant="secondary" aria-expanded={isExpanded} className={styles.toggleButton} - icon={isExpanded ? 'angle-down' : 'angle-up'} + icon={isExpanded ? 'angle-up' : 'angle-down'} onClick={onToggle} />