@asd20/ui 3.2.625 → 3.2.626

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.625",
8
+ "version": "3.2.626",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -64,8 +64,8 @@ export default {
64
64
  // is always on top
65
65
  .sort((a, b) => {
66
66
  // if (this.getPreferredLanguageCode().includes(a.code)) return -1 // Move up
67
- if (a.code < b.code) return -1 // Move up
68
- if (a.code > b.code) return 1 // Move down
67
+ if (a.name < b.name) return -1 // Move up
68
+ if (a.name > b.name) return 1 // Move down
69
69
  return 0 // Leave where it is
70
70
  })
71
71
  )
@@ -372,6 +372,8 @@ export default {
372
372
  // },
373
373
  mounted() {
374
374
  this.$nextTick(() => {
375
+ this.$emit('announcements-in-view')
376
+ this.$emit('events-in-view')
375
377
  this.$emit('stories-in-view')
376
378
  })
377
379
  },
@@ -28,7 +28,7 @@ const wrapper = {
28
28
  floating: [],
29
29
  status: [],
30
30
  }
31
- return boolean('Show Notifications', true)
31
+ return boolean('Show Notifications', false)
32
32
  ? notifications || empty
33
33
  : empty
34
34
  },