1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-23 00:22:19 +01:00

Bug fixes

This commit is contained in:
andreas-unleash 2022-07-22 12:27:04 +03:00
parent d65c3b4915
commit 19b7e92546
3 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ export const CaseSensitiveButton = ({
</Tooltip>
}
elseShow={
<Tooltip title="Remove case sensitive" arrow>
<Tooltip title="Make it case insensitive" arrow>
<StyledToggleButtonOn
onClick={setCaseInsensitive}
disableRipple

View File

@ -6,7 +6,7 @@ export const StyledToggleButtonOff = styled(Button)(({ theme }) => ({
minWidth: '28px!important',
minHeight: 40,
backgroundColor: 'white',
color: theme.palette.grey[600],
color: theme.palette.inactiveIcon,
borderRadius: theme.shape.borderRadius,
padding: '0 1px 0',
marginRight: '1rem',

View File

@ -90,9 +90,9 @@ export const ConstraintAccordionViewHeaderMultipleValues = ({
)}
>
{!expanded
? `Expand to view all (
? `View all (
${constraint?.values?.length})`
: 'Collapse to view less'}
: 'View less'}
</p>
}
/>