Skip to content

Commit ca2bdad

Browse files
author
Guillaume Chau
committedApr 10, 2019
feat(tasks): refresh button
1 parent 13199f5 commit ca2bdad

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed
 

‎packages/@vue/cli-ui/locales/en.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,8 @@
434434
}
435435
},
436436
"project-tasks": {
437-
"title": "Project tasks"
437+
"title": "Project tasks",
438+
"refresh": "Refresh tasks"
438439
},
439440
"project-task-details": {
440441
"actions": {

‎packages/@vue/cli-ui/src/components/task/ProjectTasks.vue

+17
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
:title="$t('org.vue.views.project-tasks.title')"
55
>
66
<ApolloQuery
7+
ref="tasks"
78
:query="require('@/graphql/task/tasks.gql')"
89
class="fill-height"
910
>
@@ -27,6 +28,13 @@
2728
icon-left="search"
2829
class="search round"
2930
/>
31+
32+
<VueButton
33+
v-tooltip="$t('org.vue.views.project-tasks.refresh')"
34+
icon-left="refresh"
35+
class="icon-button flat"
36+
@click="refresh()"
37+
/>
3038
</div>
3139

3240
<TaskItem
@@ -101,7 +109,16 @@ export default {
101109
task
102110
})
103111
)
112+
},
113+
114+
refresh () {
115+
this.$refs.tasks.$apollo.queries.query.refetch()
104116
}
105117
}
106118
}
107119
</script>
120+
121+
<style lang="stylus" scoped>
122+
.search
123+
margin-right 6px
124+
</style>

0 commit comments

Comments
 (0)
Please sign in to comment.