fix: Bug: URLs list view #330
This commit is contained in:
parent
bcc816ea55
commit
3c66c18c77
1 changed files with 2 additions and 1 deletions
|
@ -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={{
|
||||||
|
|
Loading…
Reference in a new issue