Skip to content

Commit 1cd5767

Browse files
committed
chore: clean
1 parent c833261 commit 1cd5767

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

packages/app-frontend/src/features/components/SelectedComponentPane.vue

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { defineComponent, ref, watch, computed } from '@vue/composition-api'
77
import { onKeyDown } from '@front/util/keyboard'
88
import { useSelectedComponent } from './composable'
99
10-
// @ts-ignore
1110
export default defineComponent({
1211
components: {
1312
StateInspector,
@@ -28,7 +27,7 @@ export default defineComponent({
2827
})
2928
3029
const stateFilterInput = ref()
31-
30+
3231
onKeyDown(event => {
3332
if (event.key === 'd' && event.altKey) {
3433
stateFilterInput.value.focus()
@@ -64,12 +63,12 @@ export default defineComponent({
6463
</div>
6564

6665
<VueInput
66+
ref="stateFilterInput"
67+
v-model="stateFilter"
6768
v-tooltip="{
6869
content: $t('StateInspector.filter.tooltip'),
6970
html: true
7071
}"
71-
ref="stateFilterInput"
72-
v-model="stateFilter"
7372
icon-left="search"
7473
placeholder="Filter state..."
7574
class="search flex-1 flat"

0 commit comments

Comments
 (0)