Hello,
I did not find a solution for how to remove it when using ComboBox in DisplayMode.
However, I now tend to do either of the two following:
Approach 1: Hiding the ComboBox and show selected value in label or Html text
The ComboBox will then use the following:
Visible: false
Height: If(Self.Visible, 60, 0)
Add a label/html text with the following:
Text: ComboBox.Selected.Value
Approach 2: Remove the ComboBox as it's a DisplayForm and the value wont be changed here
When removing the ComboBox, the update section of the card needs to be changed as follows:'
Update: Self.Default
Add a label/html text with the following:
Text: ThisItem.Column.Value
This way you bypass the problem, and you could also choose to make the labels/html text use auto height.
Hope this is of any use for you 🙂