1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-13 02:47:19 +01:00

should be inverse

This commit is contained in:
Kyle Spearrin 2019-04-29 09:30:00 -04:00
parent 520f20d428
commit 169be0f8da

View File

@ -88,14 +88,14 @@ export class IdentityView implements View {
get fullAddress(): string { get fullAddress(): string {
let address = this.address1; let address = this.address1;
if (Utils.isNullOrWhitespace(this.address2)) { if (!Utils.isNullOrWhitespace(this.address2)) {
if (Utils.isNullOrWhitespace(address)) { if (!Utils.isNullOrWhitespace(address)) {
address += ', '; address += ', ';
} }
address += this.address2; address += this.address2;
} }
if (Utils.isNullOrWhitespace(this.address3)) { if (!Utils.isNullOrWhitespace(this.address3)) {
if (Utils.isNullOrWhitespace(address)) { if (!Utils.isNullOrWhitespace(address)) {
address += ', '; address += ', ';
} }
address += this.address3; address += this.address3;