Update Activity.vue

pull/1331/head
Daniel Supernault 6 years ago
parent 7a89256219
commit d793e2cff2
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -113,11 +113,7 @@ export default {
methods: { methods: {
fetchNotifications() { fetchNotifications() {
axios.get('/api/v1/notifications', { axios.get('/api/v1/notifications')
params: {
pg: false
}
})
.then(res => { .then(res => {
let data = res.data.filter(n => { let data = res.data.filter(n => {
if(n.type == 'share' && !status) { if(n.type == 'share' && !status) {
@ -140,8 +136,7 @@ export default {
} }
axios.get('/api/v1/notifications', { axios.get('/api/v1/notifications', {
params: { params: {
page: this.notificationCursor, page: this.notificationCursor
pg: false
} }
}).then(res => { }).then(res => {
if(res.data.length > 0) { if(res.data.length > 0) {

Loading…
Cancel
Save