File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ const activeComponentObj = computed(() => store.activeComponentObj);
95
95
let activeComponent = computed (() => store .activeComponent );
96
96
const routes = computed (() => store .routes );
97
97
const activeRoute = computed (() => store .activeRoute );
98
- const activeRouteKey = computed (() => store .state . routes [store .activeRoute ]);
98
+ const activeRouteKey = computed (() => store .routes [store .activeRoute ]);
99
99
100
100
// actions
101
101
Original file line number Diff line number Diff line change @@ -257,7 +257,7 @@ watch(attributeModalOpen, () => {
257
257
watch (
258
258
() => activeComponent .value ,
259
259
() => {
260
- if (activeComponent !== " " ) {
260
+ if (activeComponent . value !== " " ) {
261
261
activeComponent .component = true ;
262
262
} else {
263
263
activeComponent .component = false ;
You can’t perform that action at this time.
0 commit comments