- creating admin fix

- fixed hamburger menu in public folder
- red cancel sharing button
This commit is contained in:
Čarodej
2022-04-27 17:28:03 +02:00
parent a4aa329bf4
commit 4b8bd3be52
3 changed files with 3 additions and 3 deletions

View File

@@ -14,8 +14,7 @@
<!--More Actions-->
<div class="flex items-center relative mr-[4px]">
<div @click="showMobileNavigation" class="cursor-pointer p-1.5 -m-1.5">
<div v-if="! $isThisRoute($route, ['Public'])" @click="showMobileNavigation" class="cursor-pointer p-1.5 -m-1.5">
<menu-icon size="17" class="vue-feather dark:text-gray-100" />
</div>
</div>

View File

@@ -248,7 +248,7 @@ export default {
return this.isConfirmedDestroy ? this.$t('popup_share_edit.confirm') : this.$t('popup_share_edit.stop')
},
destroyButtonStyle() {
return this.isConfirmedDestroy ? 'danger-solid' : 'secondary'
return this.isConfirmedDestroy ? 'danger-solid' : 'danger'
},
},
watch: {

View File

@@ -62,6 +62,7 @@ class UserController extends Controller
}
// Update user data
$user->role = $data->role;
$user->email_verified_at = now();
$user->save();