Fix: Typo in field assignment.
This commit is contained in:
parent
15e86eecd5
commit
ada5d99128
|
@ -289,7 +289,7 @@ async function parseNodeFile(file: string): Promise<{node: Node, nodeSecrets: No
|
||||||
email: node.email as string || '',
|
email: node.email as string || '',
|
||||||
hostname: node.hostname as string || '',
|
hostname: node.hostname as string || '',
|
||||||
coords: node.coords as string || undefined,
|
coords: node.coords as string || undefined,
|
||||||
key: node.coords as FastdKey || undefined,
|
key: node.key as FastdKey || undefined,
|
||||||
mac: node.mac as string || '',
|
mac: node.mac as string || '',
|
||||||
monitoring: !!node.monitoring,
|
monitoring: !!node.monitoring,
|
||||||
monitoringConfirmed: !!node.monitoringConfirmed,
|
monitoringConfirmed: !!node.monitoringConfirmed,
|
||||||
|
|
Loading…
Reference in a new issue