Skip to content

Commit

Permalink
Merge pull request #1651 from marbad1994/extra_variables_validation_e…
Browse files Browse the repository at this point in the history
…rror

Fix: Extra variables validation error #1141
  • Loading branch information
fiftin authored Feb 5, 2024
2 parents 595add2 + c96b823 commit dcba92a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions web/src/components/EnvironmentForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,15 @@ export default {
codemirror,
},
created() {
if (!this.item.env) {
this.item.env = '{}';
}
if (!this.item.json) {
this.item.json = '{}';
}
},
data() {
return {
cmOptions: {
Expand Down

0 comments on commit dcba92a

Please sign in to comment.