Skip to content

Commit

Permalink
fix batch edit checkbox on the wrong line (#13952)
Browse files Browse the repository at this point in the history
  • Loading branch information
br41nslug committed Jun 17, 2022
1 parent ae94e05 commit dea0669
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions app/src/components/v-chip/v-chip.vue
Expand Up @@ -162,6 +162,7 @@ body {
.chip-content {
display: inline-flex;
align-items: center;
white-space: nowrap;
.close-outline {
position: relative;
Expand Down
12 changes: 6 additions & 6 deletions app/src/components/v-form/form-field-label.vue
@@ -1,12 +1,12 @@
<template>
<div class="field-label type-label" :class="{ disabled, edited: edited && !batchMode && !hasError && !loading }">
<v-checkbox
v-if="batchMode"
:model-value="batchActive"
:value="field.field"
@update:model-value="$emit('toggle-batch', field)"
/>
<span class="field-name" @click="toggle">
<v-checkbox
v-if="batchMode"
:model-value="batchActive"
:value="field.field"
@update:model-value="$emit('toggle-batch', field)"
/>
<span v-if="edited" v-tooltip="t('edited')" class="edit-dot"></span>
<v-text-overflow :text="field.name" />
<v-icon v-if="field.meta?.required === true" class="required" :class="{ 'has-badge': badge }" sup name="star" />
Expand Down

0 comments on commit dea0669

Please sign in to comment.