Skip to content

Commit

Permalink
First slice of fixes for Submit Report fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
fergmac committed Jul 22, 2024
1 parent 84d5650 commit 0dfe36a
Show file tree
Hide file tree
Showing 3 changed files with 419 additions and 424 deletions.
2 changes: 1 addition & 1 deletion app/frontend/src/common/inputBindingsMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const inputBindingsMixin = {
// If you haven't specified fields, then just iterate through the props
const props = Object.keys(this.$options.props)
props.forEach(key => {
if (this.$options.props[key].isInput !== false) {
if (this.$options.props[key]?.isInput !== false) {
const inputKey = `${key}Input`
this.$options.computed[inputKey] = {
get () {
Expand Down
Loading

0 comments on commit 0dfe36a

Please sign in to comment.