I have an app that's published with version 3.26013.14 and working properly. I'm trying to make some updates to a ComboBox where the data source is a SharePoint list.
The existing expression is: Sort(Filter('Employee List','Employment Status'.Value = "Employed"),Title)
I'm trying to update to: Sort(Filter('Employee List','Employment Status'.Value = "Employed",Department.Value <> "Office"),Title)
Before I got to updating the expression, I'm seeing that the values in the combo box are now appearing as HTML (see screenshot below). I did recently update the JSON formatting for the List default view but I don't think that's the issue.
When I add a Calculated column =Title, I'm getting the same HTML in the combo box when I reference it instead.
When I insert a Text Label with First('Employee List').Title it looks correct (just user name, no HTML). Confirmed that First('Employee List').calctitle is correct too.
I inserted both a new dropdown and combo box and they're rendering the same HTML value. I changed the default view in SharePoint to one that does not have formatting and see the same HTML.
And - when I do go to update the ComboBox expression to exclude items where Department eq Office, it's not working. I can use Text Labels to confirm the syntax but it's not applying to the ComboBox.
Screenshots show (1) what the HTML looks like and (2) that Title is still rendering properly for ComboBox.Seleted.Title.