should be inverse
This commit is contained in:
parent
520f20d428
commit
169be0f8da
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue