This code shows the issue..
[{"id":"8a3e2c11336694f0","type":"function","z":"9ec2f6199a0c95c5","name":"formatGdx","func":"var issue_dt = msg.payload[0].issue_datetime\nvar est = new Date()\nif (msg.payload[0].message.match(/[A][L][T][K][0-9][0-9]/) === null || msg.payload[0].message.match(/[A][L][T][K][0-9][0-9]/) === 'undefined'){\n msg = { topic: 'gdx', gdx: 0, color: '#808080', }\n return msg \n}\nif (msg.payload[0].message.match(/[A][L][T][K][0-9][0-9]/) !== null ) {\n var geo = msg.payload[0].message.match(/[A][L][T][K][0-9][0-9]/)\n var gdx\n if (geo[0].substr(5, 1) <= '4') {\n msg = { topic: 'gdx', gdx: 0, color: '#808080', }\n return msg\n }\n if (geo[0].substr(5, 1) === '5') {\n msg = { topic: 'gdx', gdx: 1, color: '#ffff00', }\n return msg\n }\n if (geo[0].substr(5, 1) === '6') {\n msg = { topic: 'gdx', gdx: 2, color: '#ffbf00', }\n return msg\n }\n if (geo[0].substr(5, 1) === '7') {\n msg = { topic: 'gdx', gdx: 3, color: '#ff8000', }\n return msg\n }\n if (geo[0].substr(4, 1) === '8') {\n msg = { topic: 'gdx', gdx: 5, color: '#ff4000', }\n return msg\n }\n if (geo[0].substr(5, 1) === '9') {\n msg = { topic: 'gdx', gdx: 6, color: '#ff0000', }\n return msg\n }\n}\n","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":550,"y":460,"wires":[["4de6d090037b846d","452abdc1fce7e54e"]]},{"id":"8238c9becbb9e3fe","type":"http request","z":"9ec2f6199a0c95c5","name":"getGeoJson","method":"GET","ret":"obj","paytoqs":"ignore","url":"https://services.swpc.noaa.gov/products/alerts.json","tls":"","persist":false,"proxy":"","insecureHTTPParser":false,"authType":"","senderr":false,"headers":[],"x":370,"y":460,"wires":[["8a3e2c11336694f0"]],"info":"# getGidx"},{"id":"4de6d090037b846d","type":"ui_template","z":"9ec2f6199a0c95c5","group":"e357ef02.ef3cb","name":"G","order":7,"width":0,"height":0,"format":"<script>\n (function(scope) {\n //hide this card. NOTE: 4b689f7473831a84 is the Node id as \n //seen in the INFO panel on the sidebar when you select this node\n $('[node-id=\"740726d30c1abb76\"]').hide();\n scope.$watch('msg', function(msg) {\n if (msg && msg.topic == \"gdx\") {\n $(\"#header-gdx\").text(msg.gdx).css(\"color\",(msg.color));\n }\n });\n })(scope);\n</script>","storeOutMessages":false,"fwdInMessages":true,"resendOnRefresh":false,"templateScope":"local","className":"","x":710,"y":460,"wires":[["a12c01c1d147b97a","3c1aa1184bf3af92"]],"info":"# Update Server K\n\n# Node links to Solar Flow logic for K index varible #kdx\n\nNode needs to be in one flow for each dashboard tab in order for toolbar to update \n\n\n"},{"id":"a12c01c1d147b97a","type":"ui_template","z":"9ec2f6199a0c95c5","group":"c9165343995892c6","name":"G","order":7,"width":0,"height":0,"format":"<script>\n (function(scope) {\n //hide this card. NOTE: 4b689f7473831a84 is the Node id as \n //seen in the INFO panel on the sidebar when you select this node\n $('[node-id=\"740726d30c1abb76\"]').hide();\n scope.$watch('msg', function(msg) {\n if (msg && msg.topic == \"gdx\") {\n $(\"#header-gdx\").text(msg.gdx).css(\"color\",(msg.color));\n }\n });\n })(scope);\n msg = msg.payload\n return msg;\n</script>","storeOutMessages":false,"fwdInMessages":true,"resendOnRefresh":false,"templateScope":"local","className":"","x":850,"y":460,"wires":[[]],"info":"# Update Server K\n\n# Node links to Solar Flow logic for K index varible #kdx\n\nNode needs to be in one flow for each dashboard tab in order for toolbar to update \n\n\n"},{"id":"2d2bffcc69ac3dec","type":"inject","z":"9ec2f6199a0c95c5","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":200,"y":460,"wires":[["8238c9becbb9e3fe"]]},{"id":"452abdc1fce7e54e","type":"debug","z":"9ec2f6199a0c95c5","name":"debug 5","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":720,"y":540,"wires":[]},{"id":"3c1aa1184bf3af92","type":"debug","z":"9ec2f6199a0c95c5","name":"debug 7","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":900,"y":540,"wires":[]},{"id":"e357ef02.ef3cb","type":"ui_group","name":"Page 1","tab":"4bc17c6e.b74934","order":2,"disp":false,"width":"6","collapse":false,"className":""},{"id":"c9165343995892c6","type":"ui_group","name":"Page 2","tab":"8f4542aa.faf2","order":1,"disp":false,"width":"6","collapse":false,"className":""},{"id":"4bc17c6e.b74934","type":"ui_tab","name":"Page 1","icon":"wi-wu-tstorms","order":5,"disabled":false,"hidden":false},{"id":"8f4542aa.faf2","type":"ui_tab","name":"Page 2","icon":"wi-wu-tstorms","order":8,"disabled":false,"hidden":false}]
There is no output from the ui_template
I just wanted to know if this is expected behavior or is it a bug
Regards