Merge branch 'clearnotifs' into develop

このコミットが含まれているのは:
Roger Braun 2017-02-19 12:28:36 +01:00
コミット 73f46bfba6
1個のファイルの変更5行の追加1行の削除

ファイルの表示

@ -25,7 +25,11 @@ const Notifications = {
},
watch: {
unseenCount (count) {
this.$store.dispatch('setPageTitle', `(${count})`)
if (count > 0) {
this.$store.dispatch('setPageTitle', `(${count})`)
} else {
this.$store.dispatch('setPageTitle', '')
}
}
},
methods: {