Skip to content

Commit

Permalink
Fix textarea darkmode styles
Browse files Browse the repository at this point in the history
Resolves #151
  • Loading branch information
romanzipp committed Aug 8, 2024
1 parent ad76a31 commit 786d649
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions views/partials/table.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
{{ $job->getBaseName() }}

<span class="ml-1 text-xs text-gray-600 dark:text-gray-400">
#{{ $job->job_id }}
</span>
#{{ $job->job_id }}
</span>

</td>

Expand Down Expand Up @@ -127,7 +127,7 @@ class="w-64 text-xs p-1 border rounded bg-gray-50 dark:bg-gray-700"
</button>
</form>
@endif
@if(config('queue-monitor.ui.allow_deletion'))
@if(config('queue-monitor.ui.allow_deletion') && $job->isFinished())
<form action="{{ route('queue-monitor::destroy', [$job]) }}" method="post">
@csrf
@method('delete')
Expand Down

0 comments on commit 786d649

Please sign in to comment.