fix: wrong executions order

This commit is contained in:
Vahor
2024-09-03 17:35:18 +02:00
parent 278c8c6ec6
commit cadb12986c
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>