Skip to content
This repository was archived by the owner on Oct 1, 2021. It is now read-only.

Commit 43596fd

Browse files
committed
fix(style info): fix empty custom fields
1 parent f644d96 commit 43596fd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

client/src/components/dialogs/StyleInfoDialog.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,9 @@ export default {
170170
this.customFields = { ...this.styleData };
171171
}
172172
},
173+
mounted() {
174+
if (this.styleData) this.customFields = { ...this.styleData };
175+
},
173176
methods: {
174177
...mapActions({
175178
editStyleRequest: 'styleGrid/editStyle',

0 commit comments

Comments
 (0)