Can anyone tell me where the word 'none' is coming from?

See the picture of the sitemap. You will see the word “none” before the selections. I am curious where it is coming from. Included in my item and sitemap for the given switch “Kitchen Flash”. **I am not speaking of the none in red, this is from my mapping.

sitemap

Switch item=Kitchen_Flash label="Kitchen Flash" mappings=[NONE="None", SELECT="Alert", LSELECT="Long Alert"]

items

String  Kitchen_Flash "Kitchen Flash Effect" (gKitchenFlash) [ "Lighting" ] { channel="hue:0220:1:bulb1:alert", channel="hue:0220:1:bulb2:alert", channel="hue:0220:1:bulb3:alert", channel="hue:0220:1:bulb4:alert", channel="hue:0220:1:bulb5:alert", channel="hue:0220:1:bulb6:alert", channel="hue:0220:1:bulb7:alert", channel="hue:0220:1:bulb8:alert" }

Try removing the label statement in your sitemap and change the label in the item

Switch item=Kitchen_Flash mappings=[NONE="None", SELECT="Alert", LSELECT="Long Alert"]
String  Kitchen_Flash "Kitchen Flash" (gKitchenFlash) [ "Lighting" ] { channel="hue:0220:1:bulb1:alert", channel="hue:0220:1:bulb2:alert", channel="hue:0220:1:bulb3:alert", channel="hue:0220:1:bulb4:alert", channel="hue:0220:1:bulb5:alert", channel="hue:0220:1:bulb6:alert", channel="hue:0220:1:bulb7:alert", channel="hue:0220:1:bulb8:alert" }

add []

label="Kitchen Flash []"
2 Likes

Clever clogs!
Very nice. I’ll remember that!

@mpampinos Thanks so much! Makes sense since I am calling it a string I suppose I need to format it.