Merge pull request #3647 from node-red-hitachi/fix-subflow-category-name

Fix to extend escaped subflow category characters
This commit is contained in:
Nick O'Leary
2022-06-13 21:04:13 +01:00
committed by GitHub

View File

@@ -208,7 +208,7 @@ RED.palette = (function() {
} }
function escapeCategory(category) { function escapeCategory(category) {
return category.replace(/[ /.]/g,"_"); return category.replace(/[\x00-\x2c\x2e-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]/g,"_");
} }
function addNodeType(nt,def) { function addNodeType(nt,def) {
if (getPaletteNode(nt).length) { if (getPaletteNode(nt).length) {