remove actions in table

This commit is contained in:
2025-02-24 20:12:46 +01:00
parent 71111e15ae
commit cf8c444d4a

View File

@@ -27,7 +27,6 @@
<th class="px-6 py-3 text-left text-sm font-semibold">Name</th> <th class="px-6 py-3 text-left text-sm font-semibold">Name</th>
<th class="px-6 py-3 text-left text-sm font-semibold">Topics</th> <th class="px-6 py-3 text-left text-sm font-semibold">Topics</th>
<th class="px-6 py-3 text-left text-sm font-semibold min-w-[200px]">Progress</th> <th class="px-6 py-3 text-left text-sm font-semibold min-w-[200px]">Progress</th>
<th class="px-6 py-3 text-left text-sm font-semibold">Actions</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@@ -65,15 +64,6 @@
</span> </span>
</div> </div>
</td> </td>
<td class="px-6 py-2 border-b">
<button
onclick={() => {}}
class="px-3 py-1 bg-red-500 text-white rounded hover:bg-red-600 transition"
aria-label={`Delete task ${task.name}`}
>
Delete
</button>
</td>
</tr> </tr>
{/each} {/each}
</tbody> </tbody>