fix preset

This commit is contained in:
FloatingGhost 2021-07-01 16:47:16 +01:00
parent d49434a799
commit 9cea1bc08c
3 changed files with 6 additions and 2 deletions

View file

@ -746,6 +746,9 @@ export default {
},
selected () {
this.dismissWarning()
if (Object.prototype.toString.call(this.selected) === '[object String]') {
this.selected = JSON.parse(this.selected)
}
if (this.selectedVersion === 1) {
if (!this.keepRoundness) {
this.clearRoundness()

View file

@ -63,7 +63,7 @@
<option
v-for="style in availableStyles"
:key="style.name"
:value="style"
:value="JSON.stringify(style)"
:style="{
backgroundColor: style[1] || (style.theme || style.source).colors.bg,
color: style[3] || (style.theme || style.source).colors.text