diff --git a/angular-legacy/shared/form/field-vocab.component.ts b/angular-legacy/shared/form/field-vocab.component.ts index 20036a06c1..a12b5253b1 100644 --- a/angular-legacy/shared/form/field-vocab.component.ts +++ b/angular-legacy/shared/form/field-vocab.component.ts @@ -240,7 +240,7 @@ export class VocabField extends FieldBase { const delimPair = this.titleFieldDelim[idx]; const titleVal = data[titleFld]; if (titleVal) { - title = `${title}${_.isEmpty(title) ? '' : delimPair.prefix}${titleVal}${_.isEmpty(title) ? '' : delimPair.suffix}`; + title = `${title}${_.isEmpty(titleVal) ? '' : delimPair.prefix}${titleVal}${_.isEmpty(titleVal) ? '' : delimPair.suffix}`; } }); }