Skip to content

Commit f1565e6

Browse files
committed
merge working typescript branch
2 parents f7ca688 + 341cda1 commit f1565e6

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

src/components/right-sidebar/HTMLQueue.vue

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,6 @@ Description:
5959
</section>
6060
</template>
6161

62-
<!-- <script>
63-
export default {
64-
name: "HTMLQueue",
65-
};
66-
</script> -->
67-
6862
<script setup lang="ts">
6963
import { ref, computed, watch } from "vue";
7064
import { useStore } from "../../store/main.js";
@@ -264,13 +258,13 @@ watch(attributeModalOpen, () => {
264258
attributeModal.value = attributeModalOpen.value;
265259
});
266260
267-
watch(activeComponent, () => {
268-
if (activeComponent.value !== "") {
269-
(store.componentMap[activeComponent.value] as Component).isActive = true;
270-
} else {
271-
(store.componentMap[activeComponent.value] as Component).isActive = false;
272-
}
273-
});
261+
// watch(activeComponent, () => {
262+
// if (activeComponent.value !== "") {
263+
// (store.componentMap[activeComponent.value] as Component).isActive = true;
264+
// } else {
265+
// (store.componentMap[activeComponent.value] as Component).isActive = false;
266+
// }
267+
// });
274268
</script>
275269

276270
<!-- <script>

0 commit comments

Comments
 (0)