aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications/notifications.js
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2018-04-11 03:37:25 +0000
committerShpuld Shpludson <shp@cock.li>2018-04-11 03:37:25 +0000
commit020d2f83f9fe2290bd74dd118f7e796a415439a4 (patch)
tree6aa7ea8931fa9472025f80dd0e978e48750b168c /src/components/notifications/notifications.js
parentdaa018aecf58599f4c5c0d2f401750e1ebe93cf2 (diff)
parent896fea7dbdedce3aea88b185565b4fdccde405bd (diff)
Merge branch 'feature/rewrite-status-and-notifications-and-preview' into 'develop'
Rewrite status and notifications and preview, graceful handling of linkless attachments See merge request pleroma/pleroma-fe!223
Diffstat (limited to 'src/components/notifications/notifications.js')
-rw-r--r--src/components/notifications/notifications.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/components/notifications/notifications.js b/src/components/notifications/notifications.js
index e55c6e24..f8314bfc 100644
--- a/src/components/notifications/notifications.js
+++ b/src/components/notifications/notifications.js
@@ -1,12 +1,11 @@
-import Status from '../status/status.vue'
-import StillImage from '../still-image/still-image.vue'
+import Notification from '../notification/notification.vue'
import { sortBy, take, filter } from 'lodash'
const Notifications = {
data () {
return {
- visibleNotificationCount: 10
+ visibleNotificationCount: 20
}
},
computed: {
@@ -27,7 +26,7 @@ const Notifications = {
}
},
components: {
- Status, StillImage
+ Notification
},
watch: {
unseenCount (count) {