mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Better handling of long filter button text names like subscriptions
This commit is contained in:
parent
6ea7d04059
commit
f9e40fe427
2 changed files with 3 additions and 2 deletions
|
|
@ -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',
|
||||
},
|
||||
|
|
|
|||
|
|
@ -392,8 +392,6 @@ export function useGetLibraryItemsQuery({
|
|||
}
|
||||
}
|
||||
|
||||
console.log('responsePages', responsePages)
|
||||
|
||||
return {
|
||||
isValidating,
|
||||
itemsPages: responsePages || undefined,
|
||||
|
|
|
|||
Loading…
Reference in a new issue