Skip to content

Commit

Permalink
remove refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
alnutile committed Sep 1, 2024
1 parent 7f28bd6 commit a26de3a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions resources/js/Pages/Tasks/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@ watch(() => props.chatCompleted, (newValue) => {

<div v-auto-animate>

<div class="flex justify-end gap-2 items-center" v-if="false">
<button type="button"
class="btn btn-outline rounded-none btn-sm"
@click="getTasks" :disabled="getting_tasks">
<span v-if="!getting_tasks">Refresh</span>
<span v-else class="loading loading-dots loading-sm"></span>
</button>
</div>

<template v-for="task in tasks" :key="task.id">
<div class="p-2 border border-gray-300 rounded-md my-2">
Expand Down

0 comments on commit a26de3a

Please sign in to comment.