Bug (mistype) in servoy_sample_crm

The following is the calculation “list_display” in table “companies” in database “udm”. Please note the first “return”. Threre is “comany_name” instead of “company_name”. Obviuously it only happens when the company name’s length is greater than 24 characteres.
I opened another (less clear) thread pointing that but this was not fixed in the 3.5.3 version, released later on.

if(company_name)
{
if(company_name.length > 24)
{
return comany_name.substr(0,22) + ‘…’
}
else
{
return company_name
}
}
else
{
return “UNKNOWN”
}

Thanks for reporting. It will be fixed in 3.5.4 8)