Skip to content

Commit dd41940

Browse files
authored
Fix boolean error. (#312)
* Fix boolean error. * Update package-lock.json, package.json.
1 parent 02f90e3 commit dd41940

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

vue/sbc-common-components/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vue/sbc-common-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sbc-common-components",
3-
"version": "3.0.4",
3+
"version": "3.0.5",
44
"private": false,
55
"description": "Common Vue Components to be used across BC Registries and Online Services.",
66
"license": "Apache-2.0",

vue/sbc-common-components/src/components/SbcHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
v-for="(settings, id) in switchableAccounts"
274274
:key="id"
275275
@click="switchAccount(settings, inAuth)"
276-
:two-line="settings.additionalLabel"
276+
:two-line="!!settings.additionalLabel"
277277
>
278278

279279
<v-list-item-icon left>

0 commit comments

Comments
 (0)