n20-common-lib 2.13.16 → 2.13.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n20-common-lib",
3
- "version": "2.13.16",
3
+ "version": "2.13.17",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -280,7 +280,12 @@ export default {
280
280
  }
281
281
  },
282
282
  setState() {
283
- return this.columnsAs.length && this.columnsAs.length === this.dragListN.length
283
+ const columnsAs = []
284
+ forEachs(this.columnsAs, (item) => {
285
+ columnsAs.push(item)
286
+ })
287
+ return columnsAs.length && columnsAs.length === this.dragListN.length
288
+ // return this.columnsAs.length && this.columnsAs.length === this.dragListN.length
284
289
  },
285
290
  columnsAs: {
286
291
  get() {