fixed bug not showing slected theme in dropdown

This commit is contained in:
Gamosoft 2025-12-10 09:45:12 +01:00
parent 670a6b22d7
commit 646b0acc47
1 changed files with 1 additions and 1 deletions

View File

@ -1422,7 +1422,7 @@
style="background-color: var(--bg-primary); color: var(--text-primary); border: 1px solid var(--border-primary); cursor: pointer;"
>
<template x-for="theme in availableThemes" :key="theme.id">
<option :value="theme.id" x-text="theme.name"></option>
<option :value="theme.id" :selected="theme.id === currentTheme" x-text="theme.name"></option>
</template>
</select>
</div>