Skip to content

Commit

Permalink
18522 - UI updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
hfekete committed Nov 20, 2023
1 parent 83fc2e6 commit 5013c57
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,19 @@
:disabled="accounts.length < 2"
class="business-identifier mb-n2"
:items="accounts"
item-text="name"
item-value="uuid"
@change="emitSelected"
/>
>
<template v-slot:selection="data">
<!-- HTML that describe how select should render selected items -->
<span v-if="data.item.branchName">{{ data.item.name }} - {{ data.item.branchName }}</span>
<span v-else>{{ data.item.name }}</span>
</template>
<template v-slot:item="data">
<span v-if="data.item.branchName">{{ data.item.name }} - {{ data.item.branchName }}</span>
<span v-else>{{ data.item.name }}</span>
</template>
</v-select>
<span>You can add a message that will be included as part of your authorization request. </span>
<v-textarea
id="account-authorization-request-additional-message-textarea"
Expand Down

0 comments on commit 5013c57

Please sign in to comment.