Visibility of menu label

Hi, I found out the general label on a menu button isn't shown when the menu has no assigned value.
It also isn't shown when a value is outside the range in the value field.
Can this be changed?

menuLabelNotShown.json (3.7 KB)

Edit: I've found forcing a value at session start is an acceptable way to circumvent the issue in my case.

In v1.15.7 the label will be displayed when the value is undefined (with keywords %key and %value stripped off), this allows writing something like this:

#{@{this} === undefined ? "Default label" : "%value"}

Perfect. Thank you for this solution. :slight_smile: