@asd20/ui 3.2.488 → 3.2.490
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/atoms/Asd20MultiselectInput/index.vue +1 -1
- package/src/components/molecules/Asd20Picker/index.vue +8 -1
- package/src/components/organisms/Asd20OrganizationPicker/index.vue +1 -0
- package/src/components/organisms/Asd20VideoHeader/index.vue +1 -1
- package/src/components/templates/Asd20DistrictVideoTemplate/index.vue +2 -0
package/package.json
CHANGED
|
@@ -22,7 +22,10 @@
|
|
|
22
22
|
:icon="modalIcon"
|
|
23
23
|
>
|
|
24
24
|
<asd20-viewport scrollable>
|
|
25
|
-
<asd20-list-item
|
|
25
|
+
<asd20-list-item
|
|
26
|
+
v-if="organization.title !== 'Academy District 20'"
|
|
27
|
+
class="district-link"
|
|
28
|
+
>
|
|
26
29
|
<a href="https://asd20.org">Academy District 20 Website</a>
|
|
27
30
|
</asd20-list-item>
|
|
28
31
|
<asd20-accordion :opened="true" label="Favorites">
|
|
@@ -133,6 +136,10 @@ export default {
|
|
|
133
136
|
type: Boolean,
|
|
134
137
|
default: false,
|
|
135
138
|
},
|
|
139
|
+
organization: {
|
|
140
|
+
type: Object,
|
|
141
|
+
default: null,
|
|
142
|
+
},
|
|
136
143
|
},
|
|
137
144
|
|
|
138
145
|
data() {
|