瀏覽代碼

Update NotificationCard, fix typo in mention, share and comments. Fixes #2848

Daniel Supernault 4 年之前
父節點
當前提交
b37bb426a2
共有 1 個文件被更改,包括 6 次插入6 次删除
  1. 6 6
      resources/assets/js/components/NotificationCard.vue

+ 6 - 6
resources/assets/js/components/NotificationCard.vue

@@ -131,13 +131,13 @@
 				axios.get('/api/pixelfed/v1/notifications?pg=true')
 				.then(res => {
 					let data = res.data.filter(n => {
-						if(n.type == 'share' && !status) {
+						if(n.type == 'share' && !n.status) {
 							return false;
 						}
-						if(n.type == 'comment' && !status) {
+						if(n.type == 'comment' && !n.status) {
 							return false;
 						}
-						if(n.type == 'mention' && !status) {
+						if(n.type == 'mention' && !n.status) {
 							return false;
 						}
 						return true;
@@ -162,13 +162,13 @@
 				}).then(res => {
 					if(res.data.length) {
 						let data = res.data.filter(n => {
-							if(n.type == 'share' && !status) {
+							if(n.type == 'share' && !n.status) {
 								return false;
 							}
-							if(n.type == 'comment' && !status) {
+							if(n.type == 'comment' && !n.status) {
 								return false;
 							}
-							if(n.type == 'mention' && !status) {
+							if(n.type == 'mention' && !n.status) {
 								return false;
 							}
 							if(_.find(this.notifications, {id: n.id})) {