Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Oct 28, 2024
1 parent f0c522d commit a6e0bdc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/devtools/client/components/ServerRouteDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const props = defineProps<{
}>()
const emit = defineEmits<{
(event: 'open-default-input'): void
(event: 'openDefaultInput'): void
}>()
const [DefineDefaultInputs, UseDefaultInputs] = createReusableTemplate()
Expand Down Expand Up @@ -518,7 +518,7 @@ const copy = useCopy()
<NButton
icon="i-carbon-edit"
:border="false"
@click="emit('open-default-input')"
@click="emit('openDefaultInput')"
/>
<div x-divider />
</div>
Expand Down
4 changes: 2 additions & 2 deletions packages/devtools/client/components/ServerTaskDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const props = defineProps<{
}>()
const emit = defineEmits<{
(event: 'open-default-input'): void
(event: 'openDefaultInput'): void
}>()
const routeInputBodyJSON = ref<any>({ payload: {} })
Expand Down Expand Up @@ -288,7 +288,7 @@ const copy = useCopy()
<NButton
icon="i-carbon-edit"
:border="false"
@click="emit('open-default-input')"
@click="emit('openDefaultInput')"
/>
<div x-divider />
</div>
Expand Down

0 comments on commit a6e0bdc

Please sign in to comment.