We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afab468 commit ca2df87Copy full SHA for ca2df87
src/components/right-sidebar/HTMLQueue.vue
@@ -59,12 +59,6 @@ Description:
59
</section>
60
</template>
61
62
-<script>
63
-export default {
64
- name: "HTMLQueue",
65
-};
66
-</script>
67
-
68
<script setup lang="ts">
69
import { ref, computed, watch } from "vue";
70
import { useStore } from "../../store/main.js";
@@ -252,7 +246,7 @@ const addBinding = (input: string, idNum: number) => {
252
246
if (input === "") {
253
247
return;
254
248
}
255
- const payload : {binding: string, id: number} = {
249
+ const payload: { binding: string; id: number } = {
256
250
binding: input,
257
251
id: idNum,
258
};
0 commit comments