Skip to content

Commit

Permalink
Fixed flat not polyfilled error in vue cli3 (wenzhixin#4694)
Browse files Browse the repository at this point in the history
  • Loading branch information
wenzhixin authored and djhvscf committed Nov 13, 2019
1 parent e3f5dae commit d749945
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ ChangeLog
- **Update:** Fixed `virtualScroll` option bug with treegrid extension.
- **Update:** Fixed input keyboard bug for mobile extension.
- **Update:** Fixed detail view column reorder bug for reorder-columns extension.
- **Update:** Fixed `flat` not polyfilled error in vue cli3.
- **Update:** Removed `resetWidth` method and use `resetView` instead.

### 1.15.5
Expand Down
2 changes: 1 addition & 1 deletion src/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default {
},

updateFieldGroup (columns) {
const allColumns = columns.flat()
const allColumns = [].concat(...columns)

for (const c of columns) {
for (const r of c) {
Expand Down

0 comments on commit d749945

Please sign in to comment.