Skip to content

Commit

Permalink
fix: Fixes error while updating widget builder title (#7756)
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamAshdown committed Aug 19, 2023
1 parent 4101a7b commit 3559268
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -36,8 +36,10 @@ export default {
isDefaultScreen() {
return (
this.config.isDefaultScreen &&
(this.config.welcomeHeading.length !== 0 ||
this.config.welcomeTagline.length !== 0)
((this.config.welcomeHeading &&
this.config.welcomeHeading.length !== 0) ||
(this.config.welcomeTagLine &&
this.config.welcomeTagline.length !== 0))
);
},
},
Expand Down

0 comments on commit 3559268

Please sign in to comment.