diff options
| author | Roger Braun <roger@rogerbraun.net> | 2017-02-19 13:37:21 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2017-02-19 13:37:21 +0100 |
| commit | 2933dc30a5de82469ee81720bc78c61f0db7cc4a (patch) | |
| tree | fc2a1611c9542a02f99e34d08f741cb2c2dccee5 /src/components/notifications/notifications.js | |
| parent | 56e036b4de1b3d92c0de3f18a0b3ada707ba4c2f (diff) | |
Only display 10 notifications at a time, 20 is too much.
Diffstat (limited to 'src/components/notifications/notifications.js')
| -rw-r--r-- | src/components/notifications/notifications.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/notifications/notifications.js b/src/components/notifications/notifications.js index d6a6bdb5..c8d5e212 100644 --- a/src/components/notifications/notifications.js +++ b/src/components/notifications/notifications.js @@ -3,7 +3,7 @@ import { sortBy, take, filter } from 'lodash' const Notifications = { data () { return { - visibleNotificationCount: 20 + visibleNotificationCount: 10 } }, computed: { |
