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 7117fb0 commit 2237cceCopy full SHA for 2237cce
interface/ui/src/views/devices/DeviceForm.tsx
@@ -43,6 +43,7 @@ function DeviceForm(props: IProps) {
43
device.setVendorDir(v.vendorDir);
44
device.setFile(v.file);
45
46
+ device.setId(v.id);
47
device.setName(v.name);
48
device.setDescription(v.description);
49
deviceMetadata.setProductUrl(v.metadata?.productUrl || "");
interface/ui/src/views/vendors/VendorForm.tsx
@@ -37,6 +37,7 @@ function VendorForm(props: IProps) {
37
const vendor = new Vendor();
38
const vendorMetadata = new VendorMetadata();
39
40
+ vendor.setId(v.id);
41
vendor.setDir(v.dir);
42
vendor.setName(v.name);
vendor.setLoraAllianceVendorId(v.loraAllianceVendorId);
0 commit comments