We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89afab4 commit b6f8081Copy full SHA for b6f8081
1 file changed
src/routes/(authenticated)/admin/webhooks/+page.svelte
@@ -1,4 +1,5 @@
1
<script lang="ts">
2
+ import { RotateCcw } from '@lucide/svelte';
3
import type { SortingState } from '@tanstack/table-core';
4
import type { ColumnDef } from '@tanstack/table-core';
5
import { adminApi } from '$lib/api';
@@ -55,6 +56,10 @@
55
56
<CardTitle class="flex items-center justify-between space-x-2 text-3xl">
57
Webhooks
58
<Button onclick={() => (addDialogOpen = true)}>Add new</Button>
59
+ <Button class="text-xl" onclick={fetchWebhooks}>
60
+ <RotateCcw />
61
+ <span> Refresh </span>
62
+ </Button>
63
</CardTitle>
64
</CardHeader>
65
<div class="w-full p-6 gap-6 grid">
0 commit comments