Skip to content

Commit

Permalink
Fix extension name for top bar
Browse files Browse the repository at this point in the history
  • Loading branch information
kulmann committed Apr 24, 2020
1 parent 3b30c3c commit d541063
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/Top-Bar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ export default {
},
currentExtensionName() {
return this.$gettext(this.apps[this.currentExtension].name)
if (this.apps[this.currentExtension]) {
return this.$gettext(this.apps[this.currentExtension].name)
}
return this.currentExtension
}
},
methods: {
Expand Down

0 comments on commit d541063

Please sign in to comment.