function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Deepu2123Deepu2123 

I am trying to fix my code and it's throwing an error saying:Unexpected string concatenation for the below line in sonar cube

selectedAssociated += '"' + element.FinService__FinancialAccount__r.Name '",';
OFröhlichOFröhlich
Hi,
+ missing I would say:
selectedAssociated += '"' + element.FinService__FinancialAccount__r.Name + '",';

If this helps, please mark as Best Answer to help others too.