Skip to content

Commit

Permalink
Merge pull request #959 from FlowFuse/lint-fixes
Browse files Browse the repository at this point in the history
Fix linting errors introduced from merge
  • Loading branch information
joepavitt authored Jun 12, 2024
2 parents f641b54 + 4a12eac commit 18aa5d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/src/widgets/ui-dropdown/UIDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ export default {
},
chips: function () {
return this.dynamic.chips === null ? this.props.chips : this.dynamic.chips
},
},
clearable: function () {
return this.dynamic.clearable === null ? this.props.clearable : this.dynamic.clearable
},
},
label: function () {
return this.dynamic.label !== null ? this.dynamic.label : this.props.label
}
Expand Down Expand Up @@ -125,10 +125,10 @@ export default {
}
if (typeof updates.label !== 'undefined') {
this.dynamic.label = updates.label
}
}
if (typeof updates.multiple !== 'undefined') {
this.dynamic.multiple = updates.multiple
}
}
}
},
onChange () {
Expand Down

0 comments on commit 18aa5d4

Please sign in to comment.