Skip to content

Commit b209403

Browse files
committed
fix bug that allow html element to be nested insed Child Componenets in the HTMLQueue
1 parent 2cf4149 commit b209403

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/right-sidebar/HTMLQueue.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Description:
2424
<button class="attributeButton" @click="setActiveElement(element)">
2525
<div class="tooltip"> Edit {{ element[0] }} attributes </div>
2626
</button>
27-
<i v-if='activeComponent === "" || exceptions.includes(element[0])'></i>
27+
<i v-if='activeComponent === "" || exceptions.includes(element[0]) || moreExceptions.includes(element[0])'></i>
2828
<i v-else class="fas fa fa-angle-double-down fa-md"
2929
@click="setLayer({ text: element[0], id: element[2] })"></i>
3030
{{ element[0] }}

0 commit comments

Comments
 (0)