Skip to content
Snippets Groups Projects
Commit 3d8ba3ff authored by Dhruv Mittal's avatar Dhruv Mittal Committed by Aaron Bauman
Browse files

Issue #3511455 by dhruv.mittal: Call to a member function render() on string

parent 4311b80c
No related branches found
No related tags found
1 merge request!93Issue #3511455: Call to a member function render() on string.
Pipeline #451388 canceled
......@@ -524,7 +524,7 @@ abstract class SalesforceMappingFormCrudBase extends SalesforceMappingFormBase {
$options[$info->id()] = $info->getLabel();
}
uasort($options, function ($a, $b) {
return strcmp($a->render(), $b->render());
return strcmp((string) $a, (string) $b);
});
return $options;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment