Skip to content

Commit ca2df87

Browse files
committed
fix export name in htmlqueue
1 parent afab468 commit ca2df87

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/components/right-sidebar/HTMLQueue.vue

Lines changed: 1 addition & 7 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";
@@ -252,7 +246,7 @@ const addBinding = (input: string, idNum: number) => {
252246
if (input === "") {
253247
return;
254248
}
255-
const payload : {binding: string, id: number} = {
249+
const payload: { binding: string; id: number } = {
256250
binding: input,
257251
id: idNum,
258252
};

0 commit comments

Comments
 (0)