Better handling of long filter button text names like subscriptions

This commit is contained in:
Jackson Harper 2023-02-27 12:35:45 +08:00
parent 6ea7d04059
commit f9e40fe427
2 changed files with 3 additions and 2 deletions

View file

@ -236,6 +236,9 @@ function FilterButton(props: FilterButtonProps): JSX.Element {
verticalAlign: 'middle',
borderRadius: '3px',
cursor: 'pointer',
overflow: 'hidden',
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
'&:hover': {
backgroundColor: selected ? '#FFEA9F' : '#EBEBEB',
},

View file

@ -392,8 +392,6 @@ export function useGetLibraryItemsQuery({
}
}
console.log('responsePages', responsePages)
return {
isValidating,
itemsPages: responsePages || undefined,