diff --git a/nuxt/components/Navigation.client.vue b/nuxt/components/Navigation.client.vue index 6b147b6..424725e 100644 --- a/nuxt/components/Navigation.client.vue +++ b/nuxt/components/Navigation.client.vue @@ -36,7 +36,7 @@ if (authStore.user?.roles.includes('admin')) { { label: 'Votes', to: '/admin/votes', - icon: 'i-heroicons-star', + icon: 'i-heroicons-check-circle', }, { label: 'Jobs', diff --git a/nuxt/components/admin/AddVotes.vue b/nuxt/components/admin/AddVotes.vue index 14747b7..2dde423 100644 --- a/nuxt/components/admin/AddVotes.vue +++ b/nuxt/components/admin/AddVotes.vue @@ -13,7 +13,7 @@ const { refresh: onClick, status } = useFetch(`admin/add-total-votes-all`, async onResponse({ response }) { if (response.ok) { useToast().add({ - icon: 'i-heroicons-check-circle-20-solid', + icon: 'i-heroicons-check-circle-solid', title: 'Es wurden allen Nutzern 2 Votes hinzugefügt.', color: 'emerald', }) @@ -25,12 +25,12 @@ const { refresh: onClick, status } = useFetch(`admin/add-total-votes-all`,