Skip to content

Commit

Permalink
fix: keep select fields open (#441)
Browse files Browse the repository at this point in the history
  • Loading branch information
angelej authored Feb 6, 2025
1 parent 9dd31fc commit d360290
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions resources/views/livewire/exceptions.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<x-slot:actions>
<x-pulse::select
wire:model.live="orderBy"
id="select-exceptions-order-by"
label="Sort by"
:options="[
'count' => 'count',
Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/slow-jobs.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<x-slot:actions>
<x-pulse::select
wire:model.live="orderBy"
id="select-slow-jobs-order-by"
label="Sort by"
:options="[
'slowest' => 'slowest',
Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/slow-outgoing-requests.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

<x-pulse::select
wire:model.live="orderBy"
id="select-slow-outgoing-requests-order-by"
label="Sort by"
:options="[
'slowest' => 'slowest',
Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/slow-queries.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<x-slot:actions>
<x-pulse::select
wire:model.live="orderBy"
id="select-slow-queries-order-by"
label="Sort by"
:options="[
'slowest' => 'slowest',
Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/slow-requests.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<x-slot:actions>
<x-pulse::select
wire:model.live="orderBy"
id="select-slow-requests-order-by"
label="Sort by"
:options="[
'slowest' => 'slowest',
Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/usage.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
@if (! $this->type)
<x-pulse::select
wire:model.live="usage"
id="select-usage-by"
label="Top 10 users"
:options="[
'requests' => 'making requests',
Expand Down

0 comments on commit d360290

Please sign in to comment.