[Solved] Floor map Point Display

I have defined an Icon template as below.
When data.estop is true it shows red correctly.
I tried adding another statement for when it is false and null but I can only get it to work if I change “null” to “nul”. Is that correct ? Any suggestions are helpful.
:
{{#eq data.estop true}}
{{colorMarker ‘#ff261b’}}
{{/eq}}

{{#eq data.estop false}}
{{colorMarker ‘#8db319’}}
{{/eq}}

{{#eq data.estop null }}
{{colorMarker ‘#8db3’}}
{{/eq}}

I think all you’ll have to change is null to undefined.