fixes
This commit is contained in:
parent
9a97e0d196
commit
6b40fc9895
@ -14,7 +14,6 @@ library.add(
|
|||||||
)
|
)
|
||||||
|
|
||||||
const InstanceTab = {
|
const InstanceTab = {
|
||||||
data () {},
|
|
||||||
components: {
|
components: {
|
||||||
BooleanSetting,
|
BooleanSetting,
|
||||||
ChoiceSetting,
|
ChoiceSetting,
|
||||||
|
@ -13,13 +13,13 @@
|
|||||||
class="label"
|
class="label"
|
||||||
>
|
>
|
||||||
<template v-if="backendDescription">
|
<template v-if="backendDescription">
|
||||||
{{ backendDescriptionLabel + ' ' }}
|
{{ backendDescriptionLabel }}
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<slot />
|
<slot />
|
||||||
</template>
|
</template>
|
||||||
</span>
|
</span>
|
||||||
{{ ' ' }}
|
</Checkbox>
|
||||||
<ModifiedIndicator
|
<ModifiedIndicator
|
||||||
:changed="isChanged"
|
:changed="isChanged"
|
||||||
:onclick="reset"
|
:onclick="reset"
|
||||||
@ -32,7 +32,6 @@
|
|||||||
>
|
>
|
||||||
{{ backendDescriptionDescription + ' ' }}
|
{{ backendDescriptionDescription + ' ' }}
|
||||||
</p>
|
</p>
|
||||||
</Checkbox>
|
|
||||||
</label>
|
</label>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -5,13 +5,13 @@
|
|||||||
class="DraftButtons"
|
class="DraftButtons"
|
||||||
>
|
>
|
||||||
<Popover
|
<Popover
|
||||||
|
v-if="$parent.isDirty"
|
||||||
trigger="hover"
|
trigger="hover"
|
||||||
:trigger-attrs="{ 'aria-label': $t('settings.commit_value_tooltip') }"
|
:trigger-attrs="{ 'aria-label': $t('settings.commit_value_tooltip') }"
|
||||||
>
|
>
|
||||||
<template #trigger>
|
<template #trigger>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
v-if="$parent.isDirty"
|
|
||||||
class="button button-default btn"
|
class="button button-default btn"
|
||||||
type="button"
|
type="button"
|
||||||
:title="$t('settings.commit_value')"
|
:title="$t('settings.commit_value')"
|
||||||
@ -27,13 +27,13 @@
|
|||||||
</template>
|
</template>
|
||||||
</Popover>
|
</Popover>
|
||||||
<Popover
|
<Popover
|
||||||
|
v-if="$parent.isDirty"
|
||||||
trigger="hover"
|
trigger="hover"
|
||||||
:trigger-attrs="{ 'aria-label': $t('settings.reset_value_tooltip') }"
|
:trigger-attrs="{ 'aria-label': $t('settings.reset_value_tooltip') }"
|
||||||
>
|
>
|
||||||
<template #trigger>
|
<template #trigger>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
v-if="$parent.isDirty"
|
|
||||||
class="button button-default btn"
|
class="button button-default btn"
|
||||||
type="button"
|
type="button"
|
||||||
:title="$t('settings.reset_value')"
|
:title="$t('settings.reset_value')"
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
import Checkbox from 'src/components/checkbox/checkbox.vue'
|
|
||||||
import ModifiedIndicator from './modified_indicator.vue'
|
import ModifiedIndicator from './modified_indicator.vue'
|
||||||
import ProfileSettingIndicator from './profile_setting_indicator.vue'
|
import ProfileSettingIndicator from './profile_setting_indicator.vue'
|
||||||
import DraftButtons from './draft_buttons.vue'
|
import DraftButtons from './draft_buttons.vue'
|
||||||
@ -6,7 +5,6 @@ import { get, set } from 'lodash'
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
Checkbox,
|
|
||||||
ModifiedIndicator,
|
ModifiedIndicator,
|
||||||
DraftButtons,
|
DraftButtons,
|
||||||
ProfileSettingIndicator
|
ProfileSettingIndicator
|
||||||
|
Loading…
Reference in New Issue
Block a user