fix(theming): Some visual issues (#34676)

This commit is contained in:
Rafael Benitez
2025-08-18 13:15:17 -04:00
committed by GitHub
parent 1127ab6c07
commit b89e0d74be
4 changed files with 44 additions and 15 deletions

View File

@@ -200,9 +200,9 @@ const DatasourcePanelItem = ({
<SectionHeaderTextContainer>
<SectionHeader ref={labelRef}>{folder.name}</SectionHeader>
{collapsedFolderIds.has(folder.id) ? (
<Icons.DownOutlined iconSize="s" />
<Icons.DownOutlined iconSize="s" iconColor={theme.colorText} />
) : (
<Icons.UpOutlined iconSize="s" />
<Icons.UpOutlined iconSize="s" iconColor={theme.colorText} />
)}
</SectionHeaderTextContainer>
</Tooltip>