Skip to content

Commit

Permalink
fix(server-routes): unable to clear all params (#684)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsonleex authored Jun 22, 2024
1 parent df459f9 commit d88b003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/devtools/client/components/ServerRouteInputs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ watch(() => params, (items) => {
<NButton
v-if="params.length"
icon="carbon-trash-can" n="sm red"
my1 px-3 @click="params = []"
my1 px-3 @click="params.splice(0, params.length)"
>
Remove All
</NButton>
Expand Down

0 comments on commit d88b003

Please sign in to comment.