Merge branch 'V2' into feature/V2/BulkSelectionPanel

This commit is contained in:
EthanHealy01 2025-09-12 17:00:00 +01:00 committed by GitHub
commit 4add3ae774
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ const renderTooltipTitle = (
<Text fw={400} size="sm"> <Text fw={400} size="sm">
{title} {title}
</Text> </Text>
<LocalIcon icon="gpp-maybe-outline-rounded" width="1.25rem" height="1.25rem" style={{ color: 'var(--icon-files-color)' }} /> <LocalIcon icon="info-outline-rounded" width="1.25rem" height="1.25rem" style={{ color: 'var(--icon-files-color)' }} />
</Flex> </Flex>
</Tooltip> </Tooltip>
); );

View File

@ -22,7 +22,7 @@ export function ToolWorkflowTitle({ title, tooltip, description }: ToolWorkflowT
<Text fw={500} size="lg" p="xs"> <Text fw={500} size="lg" p="xs">
{title} {title}
</Text> </Text>
{tooltip && <LocalIcon icon="gpp-maybe-outline-rounded" width="1.25rem" height="1.25rem" style={{ color: 'var(--icon-files-color)' }} />} {tooltip && <LocalIcon icon="info-outline-rounded" width="1.25rem" height="1.25rem" style={{ color: 'var(--icon-files-color)' }} />}
</Flex> </Flex>
); );