@kosdev-code/kos-ui-sdk 2.1.16 → 2.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs +1 -1
- package/index.cjs.map +1 -1
- package/index.js +7 -5
- package/index.js.map +1 -1
- package/models/models/storage-device/services/storage-device-services.d.ts +1 -0
- package/models/models/storage-device/services/storage-device-services.d.ts.map +1 -1
- package/models/models/storage-device/storage-device-container-model.d.ts.map +1 -1
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -13996,11 +13996,13 @@ let ys = class {
|
|
|
13996
13996
|
}
|
|
13997
13997
|
async load() {
|
|
13998
13998
|
this.logger.debug(`loading storage-device-container container ${this.id}`), (await fl()).forEach((t) => {
|
|
13999
|
-
|
|
14000
|
-
|
|
14001
|
-
|
|
14002
|
-
|
|
14003
|
-
|
|
13999
|
+
if (t.deviceType !== "disk") {
|
|
14000
|
+
const s = {
|
|
14001
|
+
...t,
|
|
14002
|
+
kosParentId: this.id
|
|
14003
|
+
}, r = Un.instance(t.id).options(s).build();
|
|
14004
|
+
this.addModel(r);
|
|
14005
|
+
}
|
|
14004
14006
|
});
|
|
14005
14007
|
}
|
|
14006
14008
|
};
|