Skip to content

Commit

Permalink
edit notifications modal fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
formsdev committed Oct 12, 2023
1 parent 32fd9f8 commit 5115394
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default {
watch: {},
mounted () {
if(!this.form.notification_settings.discord){
if(!this.form.notification_settings.discord || Array.isArray(this.form.notification_settings.discord)){
this.form.notification_settings.discord = {}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {
watch: {},
mounted () {
if(!this.form.notification_settings.slack){
if(!this.form.notification_settings.slack || Array.isArray(this.form.notification_settings.slack)){
this.form.notification_settings.slack = {}
}
},
Expand Down

0 comments on commit 5115394

Please sign in to comment.