Skip to content

Commit 26b74b7

Browse files
committed
chore: fix lint
1 parent eaaedf5 commit 26b74b7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/client/src/components/inspector/InspectorDataField/Actions.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const props = withDefaults(defineProps<{
1818
})
1919
2020
defineEmits<{
21-
'enableEditInput': [type: EditorInputValidType]
22-
'addNewProp': [type: EditorAddNewPropType]
21+
enableEditInput: [type: EditorInputValidType]
22+
addNewProp: [type: EditorAddNewPropType]
2323
}>()
2424
2525
const editInspectorState = defineDevToolsAction('devtools:edit-inspector-state', (devtools, payload: InspectorStateEditorPayload) => {

packages/ui/src/components/Dropdown.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ defineEmits<{
2121
'update:visible': [value: boolean]
2222
}>()
2323
defineSlots<{
24-
default: () => any
25-
popper: (props: { hide: () => void }) => any
24+
'default': () => any
25+
'popper': (props: { hide: () => void }) => any
2626
'button-icon': () => any
2727
'button-icon-right': () => any
2828
}>()

0 commit comments

Comments
 (0)