mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-12-14 14:15:43 +01:00
fix ui
This commit is contained in:
parent
657aac5bc5
commit
de86644cb6
1 changed files with 5 additions and 3 deletions
|
@ -1,9 +1,11 @@
|
||||||
<template>
|
<template>
|
||||||
<FormBase>
|
<FormBase>
|
||||||
<FormSelect v-model:value="selectedThemeId">
|
<FormSelect v-model:value="selectedThemeId">
|
||||||
<template #label>{{ $ts.installedThemes }}</template>
|
<template #label>{{ $ts.theme }}</template>
|
||||||
<option v-for="x in installedThemes" :value="x.id" :key="x.id">{{ x.name }}</option>
|
<optgroup :label="$ts._theme.installedThemes">
|
||||||
<optgroup :label="$ts.builtinThemes">
|
<option v-for="x in installedThemes" :value="x.id" :key="x.id">{{ x.name }}</option>
|
||||||
|
</optgroup>
|
||||||
|
<optgroup :label="$ts._theme.builtinThemes">
|
||||||
<option v-for="x in builtinThemes" :value="x.id" :key="x.id">{{ x.name }}</option>
|
<option v-for="x in builtinThemes" :value="x.id" :key="x.id">{{ x.name }}</option>
|
||||||
</optgroup>
|
</optgroup>
|
||||||
</FormSelect>
|
</FormSelect>
|
||||||
|
|
Loading…
Reference in a new issue