microflow show message

0
Hi, We have a microflow with more than one "show message" actions (first an info and then an error if triggered), when we run the microflow and it gets to the error message, the messages show up but in reverse order, i see first the error than the info. Could anyone help us understand if there is a way and how to fix this ? Thanks :)
asked
1 answers
4

From a usability perspective, it is often preferred to only show one message instead of a layer of messages. I'd suggest creating a string variable that is filled with the message content throughout the microflow. Perhaps also create a boolean to indicate whether the message should be shown as warning (when info is default). Create a message at the end of the microflow and fill it with the string variable.

answered