@asd20/ui 3.2.855 → 3.2.857
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/organisms/Asd20FeedsSection/index.vue +1 -1
- package/src/components/templates/Asd20DistrictHomeTemplate/index.vue +1 -1
- package/src/components/templates/Asd20WayfindingAlternateTemplate/index.vue +1 -0
- package/src/components/templates/Asd20WayfindingTemplate/index.vue +1 -0
package/package.json
CHANGED
|
@@ -112,7 +112,7 @@ export default {
|
|
|
112
112
|
|
|
113
113
|
// If the organization id is the employee org:
|
|
114
114
|
return this.announcements.map(a => {
|
|
115
|
-
const isLeadership = a.categories.includes('
|
|
115
|
+
const isLeadership = a.categories.includes('Leadership')
|
|
116
116
|
const reversed = isLeadership ? false : true
|
|
117
117
|
|
|
118
118
|
return mapMessageToCard(a, {
|
|
@@ -113,6 +113,7 @@
|
|
|
113
113
|
widgetsSectionProps.sidebar ||
|
|
114
114
|
$slots.widgets
|
|
115
115
|
"
|
|
116
|
+
:related-links="relatedLinks"
|
|
116
117
|
v-bind="{ ...widgetsSectionProps.footer, ...widgetsSectionProps.sidebar }"
|
|
117
118
|
@events-in-view="$emit('events-in-view')"
|
|
118
119
|
@files-in-view="$emit('files-in-view')"
|
|
@@ -109,6 +109,7 @@
|
|
|
109
109
|
widgetsSectionProps.sidebar ||
|
|
110
110
|
$slots.widgets
|
|
111
111
|
"
|
|
112
|
+
:related-links="relatedLinks"
|
|
112
113
|
v-bind="{ ...widgetsSectionProps.footer, ...widgetsSectionProps.sidebar }"
|
|
113
114
|
@events-in-view="$emit('events-in-view')"
|
|
114
115
|
@files-in-view="$emit('files-in-view')"
|