Skip to content

Commit

Permalink
fix: fixing dividers and notification block
Browse files Browse the repository at this point in the history
  • Loading branch information
paulushcgcj committed Sep 1, 2023
1 parent 580cf8a commit 210e50a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ watch([selectedOption], () => {
@update:selected-value="autoCompleteResult = $event"
/>
<cds-inline-loading status="active" v-if="showDetailsLoading">Loading client details...</cds-inline-loading>
<div class="notifications">
<div class="notifications" v-if="(showAutoCompleteInfo && selectedOption === ClientTypeEnum.R) || showGoodStandingError || showDuplicatedError">
<cds-inline-notification
v-if="showAutoCompleteInfo && selectedOption === ClientTypeEnum.R"
open="true"
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/applyform/ReviewWizardStep.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ onMounted(() => {
:key="address.locationName"
class="grouping-07"
>
<hr v-if="index > 0"/>
<hr class="divider" v-if="index > 0"/>
<span class="heading-02">{{ address.locationName }}</span>
<span class="body-compact-01">{{ address.streetAddress }}</span>
<span class="body-compact-01">{{ address.city }}, {{ address.province.text }}</span>
Expand All @@ -99,7 +99,7 @@ onMounted(() => {
:key="contact.email"
class="grouping-07"
>
<hr v-if="index > 0"/>
<hr class="divider" v-if="index > 0"/>
<span class="heading-02">{{ contact.firstName }} {{ contact.lastName }}</span>
<span class="body-compact-01">
{{ contact.locationNames.map((codeDesc) => codeDesc.text).join(', ') }}
Expand Down

0 comments on commit 210e50a

Please sign in to comment.