Merge pull request #3300 from Vahor/remove-reverse-scheduled

fix: recent executions in wrong order in scheduled-task list ui
This commit is contained in:
Andras Bacsai
2024-09-05 11:07:48 +02:00
committed by GitHub
5 changed files with 7 additions and 5 deletions

View File

@@ -42,6 +42,6 @@
<div class="pt-4">
<h3 class="py-4">Recent executions <span class="text-xs text-neutral-500">(click to check output)</span></h3>
<livewire:project.shared.scheduled-task.executions :task="$task" key="{{ $task->id }}" selectedKey="" :executions="$task->executions->take(-20)" />
<livewire:project.shared.scheduled-task.executions :task="$task" key="{{ $task->id }}" selectedKey="" :executions="$task->executions->take(20)" />
</div>
</div>