Themes in settings will now only display less files

This commit is contained in:
booploops 2022-02-11 17:06:59 -08:00
parent 064b287553
commit 7df1b9ba16
2 changed files with 6 additions and 2 deletions

View file

@ -130,7 +130,7 @@
<select class="md-select" @change="$root.setTheme($root.cfg.visual.theme)" v-model="$root.cfg.visual.theme">
<option value="default.less">{{$root.getLz('settings.option.visual.theme.default')}}</option>
<option value="dark.less">{{$root.getLz('settings.option.visual.theme.dark')}}</option>
<option v-for="theme in themes" :value="theme">{{ theme }}</option>
<option v-for="theme in themes" :value="theme">{{ theme.replace(".less", "") }}</option>
</select>
</div>
</div>