Skip to content

Commit

Permalink
fix(web): checkbox state in new task form
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftin committed Jan 28, 2025
1 parent f5ddcb9 commit b3ccf23
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
10 changes: 2 additions & 8 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions web/src/components/TaskParamsForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@ export default {
};
},
created() {
this.params = this.value;
},
methods: {
updateValue(prop, value) {
this.params[prop] = value;
Expand Down

0 comments on commit b3ccf23

Please sign in to comment.