Bug fixes and Action / Decision seeder

This commit is contained in:
Simon Pocrnjič
2024-11-14 22:01:43 +01:00
parent ad8b3c07e1
commit 7329a5f7d8
4 changed files with 125 additions and 12 deletions
+6 -6
View File
@@ -142,16 +142,16 @@ const logout = () => {
<div :class="{'block': showingNavigationDropdown, 'hidden': ! showingNavigationDropdown}" class="sm:hidden">
<div class="pt-2 pb-3 space-y-1">
<ResponsiveNavLink :href="route('dashboard')" :active="route().current('dashboard')">
Dashboard
Nadzorna plošča
</ResponsiveNavLink>
<ResponsiveNavLink :href="route('client')" :active="route().current('client')">
Clients
Naročniki
</ResponsiveNavLink>
<ResponsiveNavLink :href="route('clientCase')" :active="route().current('clientCase')">
Cases
Primeri
</ResponsiveNavLink>
<ResponsiveNavLink :href="route('settings')" :active="route().current('settings')">
Settings
Nastavitve
</ResponsiveNavLink>
</div>
@@ -174,7 +174,7 @@ const logout = () => {
<div class="mt-3 space-y-1">
<ResponsiveNavLink :href="route('profile.show')" :active="route().current('profile.show')">
Profile
Profil
</ResponsiveNavLink>
<ResponsiveNavLink v-if="$page.props.jetstream.hasApiFeatures" :href="route('api-tokens.index')" :active="route().current('api-tokens.index')">
@@ -184,7 +184,7 @@ const logout = () => {
<!-- Authentication -->
<form method="POST" @submit.prevent="logout">
<ResponsiveNavLink as="button">
Log Out
Izpis
</ResponsiveNavLink>
</form>