Skip to content

Commit

Permalink
Merge pull request #83 from readingdancer/fixing-days-of-the-week
Browse files Browse the repository at this point in the history
Fixing the days of the week and adding the new email address.
  • Loading branch information
readingdancer authored Apr 3, 2020
2 parents c1bbcaa + 97bd821 commit 8d4ae96
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion covid-19-support/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default {
markers = this.entries.filter((c) => c.gsx$resource.$t === this.need && c.gsx$status.$t === 'active')
}
const dayFilters = ['mon', 'tues', 'wed', 'thr', 'fri', 'sat', 'sun'].map((attr) => `gsx$${attr}`)
const dayFilters = ['sun', 'mon', 'tues', 'wed', 'thr', 'fri', 'sat'].map((attr) => `gsx$${attr}`)
const dayFilter = dayFilters[this.day]
return markers.filter((c) => c[dayFilter].$t !== '0')
Expand Down
2 changes: 1 addition & 1 deletion covid-19-support/src/components/AboutUs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<i18n path="about.contactus.info" tag="p">
<a href="https://www.meetup.com/Triangle-Code-for-America/" target="_blank">{{ $t('about.orgs.chb') }}</a>
<a href="https://www.codeforamerica.org/" target="_blank">{{ $t('about.orgs.cfa') }}</a>
<a href="mailto:codeforchapelhill@gmail.com" target="_blank">{{ $t('label.email_lowercase') }}</a>
<a href="mailto:contact@nccovidsupport.org" target="_blank">contact@nccovidsupport.org</a>
</i18n>
</b-tab>
</b-tabs>
Expand Down
2 changes: 1 addition & 1 deletion covid-19-support/src/components/ResourceMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export default {
data() {
return {
center: latLng(35.91371, -79.057919),
zoom: 13,
zoom: 10,
url: 'https://{s}.basemaps.cartocdn.com/rastertiles/voyager_labels_under/{z}/{x}/{y}.png',
showParagraph: true,
mapOptions: { zoomSnap: 0.5, setView: true },
Expand Down
4 changes: 2 additions & 2 deletions covid-19-support/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"contact": "Contact Us",
"contactus": {
"email": "email",
"info": "This page is powered by the {0} of {1}. For questions, please contact us via {2}."
"info": "This page is powered by the {0} of {1}. For questions, please contact us via email at {2}."
},
"devhelp": {
"conduct": "Code of Conduct",
Expand Down Expand Up @@ -87,5 +87,5 @@
"what-do-you-need": "What do you need?",
"when-do-you-need-it": "When do you need it?"
},
"title": "COVID-19 Community Resources"
"title": "NC COVID Support"
}

0 comments on commit 8d4ae96

Please sign in to comment.