Skip to content

Commit

Permalink
remove extra semicolon
Browse files Browse the repository at this point in the history
Signed-off-by: Timotheus Pokorra <timotheus.pokorra@solidcharity.com>
  • Loading branch information
tpokorra committed Oct 25, 2023
1 parent c01a0c6 commit 7a912de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SidebarTabs/SettingsSidebarTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -181,15 +181,15 @@ export default {
// If disabled, submitMultiple will be casted to false if allowEdit is true, else casted to true
submitMultiple() {
if (this.disableSubmitMultiple && this.allowEdit) {
return false;
return false
}
return this.disableSubmitMultiple || this.form.submitMultiple
},
// If disabled, allowEdit will be casted to false
allowEdit() {
if (this.disableAllowEdit) {
return false;
return false
}
return this.form.allowEdit
},
Expand Down

0 comments on commit 7a912de

Please sign in to comment.