1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-19 17:52:45 +02:00

chore: UX adjustments in new unknown flag table headers (#10535)

https://linear.app/unleash/issue/2-3816/further-ux-adjustments-to-new-table-headers

Smaller UX adjustments to the new unknown flag table headers.
This commit is contained in:
Nuno Góis 2025-08-26 16:21:43 +01:00 committed by GitHub
parent b2d296138e
commit d11e8b2c81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,9 +29,10 @@ const StyledAlertContent = styled('div')(({ theme }) => ({
gap: theme.spacing(2),
}));
const StyledHeader = styled('div')({
const StyledHeader = styled('div')(({ theme }) => ({
display: 'flex',
});
paddingRight: theme.spacing(0.2),
}));
export const UnknownFlagsTable = () => {
const { unknownFlags, loading } = useUnknownFlags();
@ -65,7 +66,7 @@ export const UnknownFlagsTable = () => {
<StyledHeader>
Reported
<HelpIcon
tooltip={`Flags reported when your SDK evaluates them but they don't exist in Unleash`}
tooltip={`Feature flags are reported when your SDK evaluates them and they don't exist in Unleash`}
size='16px'
/>
</StyledHeader>
@ -85,7 +86,7 @@ export const UnknownFlagsTable = () => {
<StyledHeader>
Last event
<HelpIcon
tooltip='Events are only logged for feature flags that have been set up in Unleash first'
tooltip='Last event logged for this flag name, if it has ever existed in Unleash'
size='16px'
/>
</StyledHeader>