pleroma-fe/src/components/settings_modal/helpers/string_setting.vue

28 lines
544 B
Vue
Raw Normal View History

2023-03-14 19:50:43 +00:00
<template>
<label
v-if="matchesExpertLevel"
class="StringSetting"
>
<label :for="path">
<slot />
</label>
<input
:id="path"
class="string-input"
step="1"
:disabled="disabled"
:value="draftMode ? draft :state"
2023-03-14 19:50:43 +00:00
@change="update"
>
{{ ' ' }}
<ModifiedIndicator
:changed="isChanged"
:onclick="reset"
/>
<ProfileSettingIndicator :is-profile="isProfileSetting" />
<DraftButtons />
2023-03-14 19:50:43 +00:00
</label>
</template>
<script src="./string_setting.js"></script>