Skip to content

Commit 3215c00

Browse files
committed
Fix mutation form button placement
1 parent 0549439 commit 3215c00

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

src/components/graphqlFormGenerator/components/List.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
3535
icon
3636
size="small"
3737
variant="plain"
38-
class="remove-btn mt-n2"
38+
class="remove-btn"
3939
>
4040
<v-icon size="x-large">
4141
{{ $options.icons.mdiCloseCircle }}

src/components/graphqlFormGenerator/components/MapItem.vue

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
4848
/>
4949
</v-col>
5050
<v-col cols="auto">
51-
<div class="mt-2">
52-
<slot
53-
name="append"
54-
:disabled="modelValue.frozenKey"
55-
/>
56-
<v-tooltip v-bind="tooltipProps">
57-
<span>Pre-existing settings cannot be removed</span>
58-
</v-tooltip>
59-
</div>
51+
<slot
52+
name="append"
53+
:disabled="modelValue.frozenKey"
54+
/>
55+
<v-tooltip v-bind="tooltipProps">
56+
<span>Pre-existing settings cannot be removed</span>
57+
</v-tooltip>
6058
</v-col>
6159
</v-row>
6260
</template>

0 commit comments

Comments
 (0)