Skip to content
Snippets Groups Projects
Commit 44cef769 authored by Sebastian Listl's avatar Sebastian Listl :speech_balloon:
Browse files

ContactTitleRenderer sql correction

parent a62cad9f
No related branches found
No related tags found
No related merge requests found
......@@ -661,7 +661,7 @@ function ContactTitleRenderer(pContact, pOptions)
var maskingUtil = new SqlMaskingUtils();
var res = maskingUtil.concat([this.contact.salutation, this.contact.title, this.contact.firstname, this.contact.middlename, this.contact.lastname].filter(function (e){
return e != "";
}), " ");
}), " ", false);
//binary AND check for possibility to check serveral options
if (this._options & ContactTitleRenderer.OPTIONS.IncludeOrganisation && this.contact.organisationName)
res = maskingUtil.concat([res, this.contact.organisationName], " | ");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment