lint + fixes for registration
This commit is contained in:
parent
3799983d4f
commit
5bbc0e0bb5
14 changed files with 43 additions and 34 deletions
|
@ -4,7 +4,7 @@
|
|||
class="BooleanSetting"
|
||||
>
|
||||
<Checkbox
|
||||
:modelValue="state"
|
||||
:model-value="state"
|
||||
:disabled="disabled"
|
||||
@update:modelValue="update"
|
||||
>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<slot />
|
||||
{{ ' ' }}
|
||||
<Select
|
||||
:modelValue="state"
|
||||
:model-value="state"
|
||||
:disabled="disabled"
|
||||
@update:modelValue="update"
|
||||
>
|
||||
|
|
|
@ -110,12 +110,15 @@
|
|||
</template>
|
||||
</Popover>
|
||||
|
||||
<Checkbox :modelValue="!!expertLevel" @update:modelValue="expertLevel = Number($event)">
|
||||
<Checkbox
|
||||
:model-value="!!expertLevel"
|
||||
@update:modelValue="expertLevel = Number($event)"
|
||||
>
|
||||
{{ $t("settings.expert_mode") }}
|
||||
</Checkbox>
|
||||
<span
|
||||
class="extra-content"
|
||||
id="unscrolled-content"
|
||||
class="extra-content"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -184,8 +184,8 @@
|
|||
<button
|
||||
v-if="!isDefaultBackground"
|
||||
class="button-unstyled"
|
||||
@click="resetBackground"
|
||||
:title="$t('settings.reset_profile_background')"
|
||||
@click="resetBackground"
|
||||
>
|
||||
<FAIcon
|
||||
class="reset-button"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue