Skip to content

Commit

Permalink
fix error messages with multiple ors
Browse files Browse the repository at this point in the history
Signed-off-by: Timotheus Pokorra <[email protected]>
  • Loading branch information
tpokorra committed Jan 9, 2025
1 parent 1c127c4 commit 6ec4990
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 @@ -203,7 +203,7 @@ export default {
if (this.disableSubmitMultiple) {
return t(
'forms',
'This can not be controlled, if the form has a public link or stores responses anonymously, or the response can be edited.',
'This can not be controlled, if the form has a public link, stores responses anonymously, or the response can be edited.',
)
}
return ''
Expand All @@ -212,7 +212,7 @@ export default {
if (this.disableAllowEdit) {
return t(
'forms',
'This can not be controlled, if the form has a public link or stores responses anonymously, or multiple responses are allowed.',
'This can not be controlled, if the form has a public link, stores responses anonymously, or multiple responses are allowed.',
)
}
return ''
Expand Down

0 comments on commit 6ec4990

Please sign in to comment.