Skip to content

Commit

Permalink
Address display fix for bor-ui case (#10)
Browse files Browse the repository at this point in the history
Signed-off-by: Kial Jinnah <kialj876@gmail.com>
  • Loading branch information
kialj876 authored Jun 26, 2024
1 parent e7176eb commit a817c35
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,7 @@ on:
options:
- dev
- test
- sandbox
- prod
tagname:
description: "Specify a previous version (git tag) to deploy"
required: false
default: ""

jobs:
bus-dash-ui-cd:
Expand Down
2 changes: 1 addition & 1 deletion src/components/bcros/AddressDisplay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const addressData = computed((): string[] => {
props.address.streetAddress,
props.address.streetAdditional,
[props.address.addressCity, props.address.addressRegion, props.address.postalCode].filter(val => !!val).join(' '),
getName(props.address.addressCountry)
getName(props.address.addressCountry) || props.address.addressCountry
].filter(val => !!val)
})
</script>

0 comments on commit a817c35

Please sign in to comment.