@asd20/ui 3.2.624 → 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.624",
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
  )
@@ -97,7 +97,7 @@
97
97
 
98
98
  <div v-if="cards.length < 1">
99
99
  <br />
100
- <p>There are currently no featues to view.</p>
100
+ <p>There are currently no features to view.</p>
101
101
  </div>
102
102
  <div class="feed" v-if="cards.length > 0">
103
103
  <div
@@ -105,7 +105,7 @@
105
105
 
106
106
  <div v-if="cards.length < 1">
107
107
  <br />
108
- <p>There are currently no featues to view.</p>
108
+ <p>There are currently no features to view.</p>
109
109
  </div>
110
110
  <div class="feed" v-if="cards.length > 0">
111
111
  <div
@@ -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
  },