Skip to content

Commit 8d0c171

Browse files
committed
fix delete of new route
1 parent e5f9329 commit 8d0c171

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/left-sidebar/ComponentTab/ParentMultiselect.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ const activeComponent = computed(() => store.activeComponent);
3838
const routes = computed(() => store.routes);
3939
const activeRoute = computed(() => store.activeRoute);
4040
41-
const options = computed(() =>
42-
routes.value[activeRoute.value].map((component) => component.componentName)
41+
const options = routes.value[activeRoute.value].map(
42+
(component) => component.componentName
4343
);
4444
4545
const parentSelect: typeof store.parentSelect = (payload) =>

0 commit comments

Comments
 (0)