logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 3e6309ef94c72770dc83cc53fd05f66e69538bc7
parent 3822a73a49f82c71217bc610720324a4303626cf
Author: Shpuld Shpuldson <shp@cock.li>
Date:   Mon,  1 Feb 2021 14:43:01 +0200

remove logs

Diffstat:

Msrc/components/notification/notification.js3---
Msrc/components/notifications/notifications.js1-
Msrc/components/report/report.js1-
3 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/src/components/notification/notification.js b/src/components/notification/notification.js @@ -78,9 +78,6 @@ const Notification = { this.$store.dispatch('dismissNotificationLocal', { id: this.notification.id }) this.$store.dispatch('removeFollowRequest', this.user) }) - }, - testlog (a) { - console.log(a) } }, computed: { diff --git a/src/components/notifications/notifications.js b/src/components/notifications/notifications.js @@ -66,7 +66,6 @@ const Notifications = { return this.$store.state.statuses.notifications.loading }, notificationsToDisplay () { - console.log(this.notifications) return this.filteredNotifications.slice(0, this.unseenCount + this.seenToDisplayCount) }, ...mapGetters(['unreadChatCount']) diff --git a/src/components/report/report.js b/src/components/report/report.js @@ -24,7 +24,6 @@ const Report = { return generateProfileLink(user.id, user.screen_name, this.$store.state.instance.restrictedNicknames) }, setReportState (state) { - console.log('setting state', state) return this.$store.dispatch('setReportState', { id: this.report.id, state }) } }