1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

extend escaped subflow category characters

@HiroyasuNishiyama commit 30d88bbe7e

Co-authored-by: HiroyasuNishiyama <hiroyasu.nishiyama.uq@hitachi.com>
This commit is contained in:
Steve-Mcl 2022-06-14 07:47:54 +01:00
parent a2de514c05
commit 9946132658

View File

@ -208,7 +208,7 @@ RED.palette = (function() {
}
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) {
if (getPaletteNode(nt).length) {