Skip to content

Commit 2ab446b

Browse files
Ji Kimchdavis0917dwejikimjigarxplindenyoung
authored andcommitted
Fixed bug where adding ID would not update in codesnippet menu. Fixed in AttributeSubMenu
> > Co-authored-by: Chris Davis <[email protected]> Co-authored-by: Ji Kim <[email protected]> Co-authored-by: Jigar Patel <[email protected]> Co-authored-by: Linden Young <[email protected]>
1 parent f858846 commit 2ab446b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ const activeComponentObj = computed(() => store.activeComponentObj);
9595
let activeComponent = computed(() => store.activeComponent);
9696
const routes = computed(() => store.routes);
9797
const activeRoute = computed(() => store.activeRoute);
98-
const activeRouteKey = computed(() => store.state.routes[store.activeRoute]);
98+
const activeRouteKey = computed(() => store.routes[store.activeRoute]);
9999
100100
//actions
101101

src/components/right-sidebar/HTMLQueue.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ watch(attributeModalOpen, () => {
257257
watch(
258258
() => activeComponent.value,
259259
() => {
260-
if (activeComponent !== "") {
260+
if (activeComponent.value !== "") {
261261
activeComponent.component = true;
262262
} else {
263263
activeComponent.component = false;

0 commit comments

Comments
 (0)