@asd20/ui 3.2.542 → 3.2.543

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.542",
8
+ "version": "3.2.543",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -129,8 +129,12 @@ import Asd20SocialMenu from '../../../components/molecules/Asd20SocialMenu'
129
129
  import Asd20Logo from '../../../components/atoms/Asd20Logo'
130
130
  import Asd20DistrictLogo from '../../../components/atoms/Asd20DistrictLogo'
131
131
  import organizationAddress from '../../../data/organization-address.json'
132
- import organizationTitle from '../../../helpers/organizationTitle'
133
- import organizationSubtitle from '../../../helpers/organizationSubtitle'
132
+ import {
133
+ organizationLevel,
134
+ organizationName,
135
+ } from '../../../helpers/organization.js'
136
+ // import organizationTitle from '../../../helpers/organizationTitle'
137
+ // import organizationSubtitle from '../../../helpers/organizationSubtitle'
134
138
 
135
139
  export default {
136
140
  name: 'Asd20PageFooter',
@@ -187,10 +191,10 @@ export default {
187
191
  return adminData ? adminData.email : ''
188
192
  },
189
193
  mapOrganizationTitle() {
190
- return organizationTitle(this.organization.title)
194
+ return organizationName(this.organization.title)
191
195
  },
192
196
  mapOrganizationSubtitle() {
193
- return organizationSubtitle(this.organization.title)
197
+ return organizationLevel(this.organization.title)
194
198
  },
195
199
  },
196
200
  }