Open BKM14 opened 2 days ago
Hey @ehconitin, could you review this please?
There is an explicit break for the Array though. If it applies for Email, won't it also apply for Array
To clarify - currently, there isn't a separate break for Array. The code falls through from the Array case to the Email case, sharing a single break statement. While they handle the input the same way now, having separate cases with explicit breaks would make the code's intention clearer and easier to maintain.
What if in the future email break conditions change??? Your code will break in that situation :)
Closes #8578 There was no case to handle a
FieldMetadataType.Array
and thus an error was thrown every time the edit button was clicked on anArray
type. It has been added now.