mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-23 00:22:19 +01:00
Bug fixes
This commit is contained in:
parent
d65c3b4915
commit
19b7e92546
@ -32,7 +32,7 @@ export const CaseSensitiveButton = ({
|
|||||||
</Tooltip>
|
</Tooltip>
|
||||||
}
|
}
|
||||||
elseShow={
|
elseShow={
|
||||||
<Tooltip title="Remove case sensitive" arrow>
|
<Tooltip title="Make it case insensitive" arrow>
|
||||||
<StyledToggleButtonOn
|
<StyledToggleButtonOn
|
||||||
onClick={setCaseInsensitive}
|
onClick={setCaseInsensitive}
|
||||||
disableRipple
|
disableRipple
|
||||||
|
@ -6,7 +6,7 @@ export const StyledToggleButtonOff = styled(Button)(({ theme }) => ({
|
|||||||
minWidth: '28px!important',
|
minWidth: '28px!important',
|
||||||
minHeight: 40,
|
minHeight: 40,
|
||||||
backgroundColor: 'white',
|
backgroundColor: 'white',
|
||||||
color: theme.palette.grey[600],
|
color: theme.palette.inactiveIcon,
|
||||||
borderRadius: theme.shape.borderRadius,
|
borderRadius: theme.shape.borderRadius,
|
||||||
padding: '0 1px 0',
|
padding: '0 1px 0',
|
||||||
marginRight: '1rem',
|
marginRight: '1rem',
|
||||||
|
@ -90,9 +90,9 @@ export const ConstraintAccordionViewHeaderMultipleValues = ({
|
|||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{!expanded
|
{!expanded
|
||||||
? `Expand to view all (
|
? `View all (
|
||||||
${constraint?.values?.length})`
|
${constraint?.values?.length})`
|
||||||
: 'Collapse to view less'}
|
: 'View less'}
|
||||||
</p>
|
</p>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
Loading…
Reference in New Issue
Block a user