From 2889a5761b8fa5c07d65a6dee931b19dea2d5559 Mon Sep 17 00:00:00 2001 From: cpoder Date: Mon, 14 Oct 2024 17:51:45 +0200 Subject: [PATCH] Added "type" field to copy and paste feature --- web/lora-package/src/onboarding/devices/devices.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/web/lora-package/src/onboarding/devices/devices.component.ts b/web/lora-package/src/onboarding/devices/devices.component.ts index 674cd75b3..947e6b1d3 100644 --- a/web/lora-package/src/onboarding/devices/devices.component.ts +++ b/web/lora-package/src/onboarding/devices/devices.component.ts @@ -549,6 +549,7 @@ export class LoraDevicesComponent { this.pdevices[c].devEUI = cells[1]; this.pdevices[c].appEUI = cells[2]; this.pdevices[c].appKey = cells[3]; + this.pdevices[c].type = cells[4]; if (lines.length - 1 > c - i) { this.insertLine(c); }