feat: add CPL / Powerline node type with PlugZap icon

This commit is contained in:
Pouzor
2026-03-08 20:42:00 +01:00
parent 3312742f4c
commit 220d831cf1
4 changed files with 8 additions and 3 deletions
+2
View File
@@ -12,6 +12,7 @@ export type NodeType =
| 'camera'
| 'printer'
| 'computer'
| 'cpl'
| 'generic'
export type EdgeType = 'ethernet' | 'wifi' | 'iot' | 'vlan' | 'virtual' | 'cluster'
@@ -73,6 +74,7 @@ export const NODE_TYPE_LABELS: Record<NodeType, string> = {
camera: 'Camera',
printer: 'Printer',
computer: 'Computer',
cpl: 'CPL / Powerline',
generic: 'Generic Device',
}