cap uids based on nodes at 20 characters - fixes #2225
This commit is contained in:
parent
a26186cf21
commit
6ff53e35f3
@ -286,7 +286,7 @@ export default class Scope {
|
||||
var id = parts.join("$");
|
||||
id = id.replace(/^_/, "") || defaultName || "ref";
|
||||
|
||||
return this.generateUidIdentifier(id);
|
||||
return this.generateUidIdentifier(id.slice(0, 20));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user