Browse Source

Add security to device config store

pull/275/head
Tilen Komel 2 years ago
parent
commit
f64b96527e
  1. 3
      src/core/stores/deviceStore.ts

3
src/core/stores/deviceStore.ts

@ -191,6 +191,9 @@ export const useDeviceStore = create<DeviceState>((set, get) => ({
device.config.bluetooth = config.payloadVariant.value;
break;
}
case "security": {
device.config.security = config.payloadVariant.value;
}
}
}
}),

Loading…
Cancel
Save