Skip to content

Commit

Permalink
Merge pull request #177 from dsummersl/spanish-phone-77
Browse files Browse the repository at this point in the history
Adds spanish phone number, if it exists #77
  • Loading branch information
readingdancer authored Apr 29, 2020
2 parents 7d70972 + 9867a5c commit 2b50ab7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 7 additions & 0 deletions covid-19-support/src/components/BusinessDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@
:link="'tel:' + business.marker.gsx$contact.$t"
/>

<icon-list-item
v-if="!!business.marker.gsx$contactspanish.$t"
icon="fas fa-phone-alt"
:title="business.marker.gsx$contactspanish.$t + ' (' + $t('languages.es').toLowerCase() + ')'"
:link="'tel:' + business.marker.gsx$contactspanish.$t"
/>

<icon-list-item
v-if="!!business.marker.gsx$weblink.$t"
icon="fas fa-globe"
Expand Down
1 change: 0 additions & 1 deletion covid-19-support/src/components/ResourceMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ export default {
// name: item.marker.gsx$providername.$t,
// nameClasses: 'markerName'
})
console.log(markerIcon)
return markerIcon
}
// eslint-disable-next-line no-console
Expand Down

0 comments on commit 2b50ab7

Please sign in to comment.