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>
|
||||
</Group>
|
||||
|
||||
{urls.data && urls.data.length === 0 && (
|
||||
{!listView && urls.data && urls.data.length === 0 && (
|
||||
<Card shadow='md'>
|
||||
<Center>
|
||||
<Group>
|
||||
|
@ -313,6 +313,7 @@ export default function Urls() {
|
|||
onSortStatusChange={setSortStatus}
|
||||
records={records ?? []}
|
||||
fetching={urls.isLoading}
|
||||
minHeight={160}
|
||||
loaderBackgroundBlur={5}
|
||||
loaderVariant='dots'
|
||||
rowContextMenu={{
|
||||
|
|
Loading…
Reference in a new issue