mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
GrafanaUI: Change chevron directions for open/closed state (#47386)
This commit is contained in:
parent
883ce5ad30
commit
e3b123c3fc
@ -60,7 +60,7 @@ export const CollapsableSection: FC<Props> = ({
|
||||
{loading ? (
|
||||
<Spinner className={styles.spinner} />
|
||||
) : (
|
||||
<Icon name={open ? 'angle-down' : 'angle-right'} className={styles.icon} />
|
||||
<Icon name={open ? 'angle-up' : 'angle-down'} className={styles.icon} />
|
||||
)}
|
||||
</button>
|
||||
<div className={styles.label} id={`collapse-label-${id}`}>
|
||||
|
Loading…
Reference in New Issue
Block a user