@@ -88,14 +88,9 @@
methods: {
fetchNotifications() {
- axios.get('/api/pixelfed/v1/notifications')
+ axios.get('/api/pixelfed/v1/notifications?pg=true')
.then(res => {
- let data = res.data.filter(n => {
- if(n.type == 'share' && !status) {
- return false;
- }
- return true;
- });
+ let data = res.data;
let ids = res.data.map(n => n.id);
this.notificationMaxId = Math.min(...ids);
this.notifications = data;
diff --git a/resources/assets/js/components/PostComponent.vue b/resources/assets/js/components/PostComponent.vue
index 9edc8ba86..52969d83a 100644
--- a/resources/assets/js/components/PostComponent.vue
+++ b/resources/assets/js/components/PostComponent.vue
@@ -137,60 +137,70 @@
-