@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 +1 -1
- package/src/components/molecules/Asd20LanguageTranslation/index.vue +2 -2
- package/src/components/templates/Asd20ArticleDigestTemplate/index.vue +1 -1
- package/src/components/templates/Asd20ClubsTemplate/index.vue +3 -1
- package/src/components/templates/Asd20DetailImageTemplate/index.stories.js +1 -1
package/package.json
CHANGED
|
@@ -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.
|
|
68
|
-
if (a.
|
|
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
|
)
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
|
|
106
106
|
<div v-if="cards.length < 1">
|
|
107
107
|
<br />
|
|
108
|
-
<p>There are currently no
|
|
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
|
},
|