chore(eslint): add no-trailing-spaces rule (#1906)

This commit is contained in:
John Tanzer
2024-06-24 10:55:50 +02:00
committed by GitHub
parent 99c52e5008
commit 0a47a2b5f2
5 changed files with 11 additions and 12 deletions

View File

@@ -133,7 +133,7 @@ export default defineComponent({
const uiButton = computed<typeof configButton>(() => configButton)
const buttonRefs = ref<{ open: boolean, close: (e: EventTarget) => {} }[]>([])
const openedStates = computed(() => buttonRefs.value.map(({ open }) => open))
watch(openedStates, (newValue, oldValue) => {
for (const index in newValue) {