We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 346aa40 commit 70ada59Copy full SHA for 70ada59
dashboard/src/client/models/node.ts
@@ -21,7 +21,7 @@ export class MatterNode {
21
22
get nodeLabel(): string {
23
const label = this.attributes["0/40/5"];
24
- if (!label?.includes) return '';
+ if (typeof label !== "string") return '';
25
if (label.includes("\u0000\u0000")) return '';
26
return label.trim();
27
}
0 commit comments