Skip to content

Commit

Permalink
Empty state fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jessarcher committed Oct 6, 2023
1 parent ea8eba1 commit 2aaf4b0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion resources/views/livewire/exceptions.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class="overflow-ellipsis w-full border-0 pl-3 pr-8 py-1 bg-gray-50 dark:bg-gray-
})
}
}"
class="min-h-full flex"
class="min-h-full flex flex-col"
:class="loadingNewDataset ? 'opacity-25 animate-pulse' : ''"
>
@if (count($exceptions) === 0)
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/slow-jobs.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
})
}
}"
class="min-h-full flex"
class="min-h-full flex flex-col"
:class="loadingNewDataset ? 'opacity-25 animate-pulse' : ''"
>
@if (count($slowJobs) === 0)
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/slow-outgoing-requests.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
})
}
}"
class="min-h-full flex"
class="min-h-full flex flex-col"
:class="loadingNewDataset ? 'opacity-25 animate-pulse' : ''"
>
@if (! $supported)
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/slow-queries.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
})
}
}"
class="min-h-full flex"
class="min-h-full flex flex-col"
:class="loadingNewDataset ? 'opacity-25 animate-pulse' : ''"
>
@if (count($slowQueries) === 0)
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/slow-routes.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
})
}
}"
class="min-h-full flex"
class="min-h-full flex flex-col"
:class="loadingNewDataset ? 'opacity-25 animate-pulse' : ''"
>
@if (count($slowRoutes) === 0)
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/usage.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class="overflow-ellipsis w-full border-0 pl-3 pr-8 py-1 bg-gray-50 dark:bg-gray-
})
}
}"
class="min-h-full flex"
class="min-h-full flex flex-col"
:class="loadingNewDataset ? 'opacity-25 animate-pulse' : ''"
>
@if (count($userRequestCounts) === 0)
Expand Down

0 comments on commit 2aaf4b0

Please sign in to comment.