fix: Bug: URLs list view #330

This commit is contained in:
diced 2023-03-20 22:37:30 -07:00
parent bcc816ea55
commit 3c66c18c77
No known key found for this signature in database
GPG key ID: 370BD1BA142842D1

View file

@ -233,7 +233,7 @@ export default function Urls() {
</Tooltip> </Tooltip>
</Group> </Group>
{urls.data && urls.data.length === 0 && ( {!listView && urls.data && urls.data.length === 0 && (
<Card shadow='md'> <Card shadow='md'>
<Center> <Center>
<Group> <Group>
@ -313,6 +313,7 @@ export default function Urls() {
onSortStatusChange={setSortStatus} onSortStatusChange={setSortStatus}
records={records ?? []} records={records ?? []}
fetching={urls.isLoading} fetching={urls.isLoading}
minHeight={160}
loaderBackgroundBlur={5} loaderBackgroundBlur={5}
loaderVariant='dots' loaderVariant='dots'
rowContextMenu={{ rowContextMenu={{