neo.mjs 6.5.9 → 6.5.10
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/apps/ServiceWorker.mjs
CHANGED
package/package.json
CHANGED
package/src/DefaultConfig.mjs
CHANGED
@@ -236,12 +236,12 @@ const DefaultConfig = {
|
|
236
236
|
useVdomWorker: true,
|
237
237
|
/**
|
238
238
|
* buildScripts/injectPackageVersion.mjs will update this value
|
239
|
-
* @default '6.5.
|
239
|
+
* @default '6.5.10'
|
240
240
|
* @memberOf! module:Neo
|
241
241
|
* @name config.version
|
242
242
|
* @type String
|
243
243
|
*/
|
244
|
-
version: '6.5.
|
244
|
+
version: '6.5.10'
|
245
245
|
};
|
246
246
|
|
247
247
|
Object.assign(DefaultConfig, {
|
package/src/menu/List.mjs
CHANGED
@@ -118,7 +118,7 @@ class List extends BaseList {
|
|
118
118
|
afterSetItems(value, oldValue) {
|
119
119
|
let store = this.store;
|
120
120
|
|
121
|
-
oldValue && store.remove(
|
121
|
+
oldValue && store.clear(); // we can not use remove() here, since items are no records => often no id
|
122
122
|
value && store.add(value)
|
123
123
|
}
|
124
124
|
|