Skip to content

Commit

Permalink
fix(editor): Fix delete button hover spacing (#3412)
Browse files Browse the repository at this point in the history
  • Loading branch information
mutdmour authored Jun 2, 2022
1 parent 50ca9c4 commit 50ff75e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor-ui/src/components/ParameterInputList.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="parameter-input-list-wrapper">
<div v-for="(parameter, index) in filteredParameters" :key="parameter.name">
<div v-for="(parameter, index) in filteredParameters" :key="parameter.name" :class="{indent}">
<slot v-if="indexToShowSlotAt === index" />

<div
Expand Down

0 comments on commit 50ff75e

Please sign in to comment.