Skip to content

Commit

Permalink
fix(ui): eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed May 3, 2018
1 parent 4f3337d commit 3433658
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 8 deletions.
1 change: 0 additions & 1 deletion packages/@vue/cli-ui/src/App.vue
Expand Up @@ -27,7 +27,6 @@ export default {
}
</script>


<style lang="stylus">
@import "~@vue/ui/dist/vue-ui.css"
@import "~file-icons-js/css/style.css"
Expand Down
Expand Up @@ -8,7 +8,6 @@
</div>
</template>


<script>
export default {
props: {
Expand Down
4 changes: 2 additions & 2 deletions packages/@vue/cli-ui/src/components/PromptsList.vue
Expand Up @@ -45,9 +45,9 @@ export default {
const groupMap = {}
const groups = []
this.prompts.forEach(prompt => {
let group = groups[prompt.group]
let group = groupMap[prompt.group]
if (!group) {
group = groups[prompt.group] = {
group = groupMap[prompt.group] = {
id: prompt.group,
prompts: []
}
Expand Down
2 changes: 1 addition & 1 deletion packages/@vue/cli-ui/src/components/TaskItem.vue
Expand Up @@ -68,7 +68,7 @@ export default {
id: this.task.id
}
})
},
}
}
}
</script>
Expand Down
2 changes: 0 additions & 2 deletions packages/@vue/cli-ui/src/components/TerminalView.vue
Expand Up @@ -178,8 +178,6 @@ export default {
},
async fit () {
let parent = this.$el
let el = this.$refs.render
let term = this.$_terminal
term.element.style.display = 'none'
Expand Down
1 change: 0 additions & 1 deletion packages/@vue/cli-ui/src/views/ProjectConfigurations.vue
Expand Up @@ -71,4 +71,3 @@ export default {
.content-view /deep/ > .content
overflow-y hidden
</style>

0 comments on commit 3433658

Please sign in to comment.