aboutsummaryrefslogtreecommitdiff
path: root/src/components/settings_modal/helpers/string_setting.vue
blob: 0a71aeabfe88622e5e124409c1934235ac5d3d3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<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"
      @change="update"
    >
    {{ ' ' }}
    <ModifiedIndicator
      :changed="isChanged"
      :onclick="reset"
    />
    <ProfileSettingIndicator :is-profile="isProfileSetting" />
    <DraftButtons />
  </label>
</template>

<script src="./string_setting.js"></script>