Skip to content

Commit

Permalink
Fix boolean error. (#312)
Browse files Browse the repository at this point in the history
* Fix boolean error.

* Update package-lock.json, package.json.
  • Loading branch information
seeker25 authored Nov 13, 2022
1 parent 02f90e3 commit dd41940
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions vue/sbc-common-components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vue/sbc-common-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sbc-common-components",
"version": "3.0.4",
"version": "3.0.5",
"private": false,
"description": "Common Vue Components to be used across BC Registries and Online Services.",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion vue/sbc-common-components/src/components/SbcHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@
v-for="(settings, id) in switchableAccounts"
:key="id"
@click="switchAccount(settings, inAuth)"
:two-line="settings.additionalLabel"
:two-line="!!settings.additionalLabel"
>

<v-list-item-icon left>
Expand Down

0 comments on commit dd41940

Please sign in to comment.