style: Change Star to Check
continuous-integration/drone/push Build is passing Details

main
Flycro 2024-03-24 00:28:57 +01:00
parent dbdc7c1540
commit b1cb25c823
2 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ if (authStore.user?.roles.includes('admin')) {
{ {
label: 'Votes', label: 'Votes',
to: '/admin/votes', to: '/admin/votes',
icon: 'i-heroicons-star', icon: 'i-heroicons-check-circle',
}, },
{ {
label: 'Jobs', label: 'Jobs',

View File

@ -13,7 +13,7 @@ const { refresh: onClick, status } = useFetch<any>(`admin/add-total-votes-all`,
async onResponse({ response }) { async onResponse({ response }) {
if (response.ok) { if (response.ok) {
useToast().add({ useToast().add({
icon: 'i-heroicons-check-circle-20-solid', icon: 'i-heroicons-check-circle-solid',
title: 'Es wurden allen Nutzern 2 Votes hinzugefügt.', title: 'Es wurden allen Nutzern 2 Votes hinzugefügt.',
color: 'emerald', color: 'emerald',
}) })
@ -25,12 +25,12 @@ const { refresh: onClick, status } = useFetch<any>(`admin/add-total-votes-all`,
</script> </script>
<template> <template>
<UButton icon="i-heroicons-star" solid label="Nutzern Votes hinzufügen" @click="isOpen = true" /> <UButton icon="i-heroicons-check-circle" solid label="Nutzern Votes hinzufügen" @click="isOpen = true" />
<UDashboardModal <UDashboardModal
v-model="isOpen" v-model="isOpen"
title="Votes hinzufügen" title="Votes hinzufügen"
description="Bist du dir sicher das du jedem Benutzer 2 Votes geben möchtest?" description="Bist du dir sicher das du jedem Benutzer 2 Votes geben möchtest?"
icon="i-heroicons-star" icon="i-heroicons-check-circle"
:ui="{ :ui="{
icon: { base: 'text-primary dark:text-primary-400' } as any, icon: { base: 'text-primary dark:text-primary-400' } as any,
footer: { base: 'ml-16' } as any, footer: { base: 'ml-16' } as any,