Skip to content

Commit

Permalink
Fix build failure with latest vue version (#605)
Browse files Browse the repository at this point in the history
  • Loading branch information
fxha authored and Jocs committed Dec 13, 2018
1 parent 638f65e commit fa394be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -160,7 +160,7 @@
"vega": "^4.3.0",
"vega-embed": "^3.24.2",
"vega-lite": "^3.0.0-rc8",
"vue": "^2.5.17",
"vue": "^2.5.21",
"vue-electron": "^1.0.6",
"vuex": "^3.0.1"
},
Expand Down Expand Up @@ -227,7 +227,7 @@
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.26.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
Expand Down
5 changes: 3 additions & 2 deletions src/renderer/components/sideBar/tree.vue
Expand Up @@ -40,9 +40,10 @@
</div>
<div class="opened-files-list">
<transition-group name="list">
<!-- tab.id := mt-1, mt-2, ... -->
<opened-file
v-for="(tab, index) of tabs"
:key="index"
v-for="tab of tabs"
:key="tab.id"
:file="tab"
></opened-file>
</transition-group>
Expand Down

0 comments on commit fa394be

Please sign in to comment.