Merge branch 'fix/marking' into 'master'

fix password reset link not found bug

See merge request CIEFWorldwideSdnBhd/exchange!110
This commit is contained in:
Jack Goh
2018-08-09 09:42:57 +00:00
+3 -2
View File
@@ -104,13 +104,14 @@ export default {
unread_message_length:0, unread_message_length:0,
url: '/api/notification/user', url: '/api/notification/user',
pagination: [], pagination: [],
}), }),
computed: mapGetters({ computed: mapGetters({
user: 'auth/user' user: 'auth/user'
}), }),
mounted(){ mounted(){
this.getNotification(this.url); if(this.user){
this.getNotification(this.url)
}
}, },
methods: { methods: {
async logout(){ async logout(){