diff --git a/resources/assets/js/App.vue b/resources/assets/js/App.vue
index e4d45c1df..37923cf62 100755
--- a/resources/assets/js/App.vue
+++ b/resources/assets/js/App.vue
@@ -140,17 +140,20 @@ export default {
if (!routeName) {
return null
}
- if (['manage-messenger', 'manage-project'].includes(routeName)) {
- return '#f8f8f8'
- }
- if (routeName.startsWith('manage-setting')) {
+ if (['manage-messenger', 'manage-project'].includes(routeName) || routeName.startsWith('manage-setting')) {
return '#f8f8f8'
}
return null
},
- navigationColor({statusColor, mobileTabbar}) {
- return statusColor || (mobileTabbar ? '#f8f8f8' : null)
+ navigationColor({routeName, mobileTabbar}) {
+ if (!routeName) {
+ return null
+ }
+ if (['manage-messenger', 'manage-project', 'manage-setting'].includes(routeName)) {
+ return '#f8f8f8'
+ }
+ return mobileTabbar ? '#f8f8f8' : null
},
rootStyle() {
diff --git a/resources/assets/js/components/DrawerOverlay/index.vue b/resources/assets/js/components/DrawerOverlay/index.vue
index e43ca106e..58f1a36dc 100644
--- a/resources/assets/js/components/DrawerOverlay/index.vue
+++ b/resources/assets/js/components/DrawerOverlay/index.vue
@@ -10,7 +10,9 @@
:beforeClose="beforeClose"
fullscreen
:class-name="modalClass">
-