File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 434
434
}
435
435
},
436
436
"project-tasks" : {
437
- "title" : " Project tasks"
437
+ "title" : " Project tasks" ,
438
+ "refresh" : " Refresh tasks"
438
439
},
439
440
"project-task-details" : {
440
441
"actions" : {
Original file line number Diff line number Diff line change 4
4
:title =" $t('org.vue.views.project-tasks.title')"
5
5
>
6
6
<ApolloQuery
7
+ ref =" tasks"
7
8
:query =" require('@/graphql/task/tasks.gql')"
8
9
class =" fill-height"
9
10
>
27
28
icon-left =" search"
28
29
class =" search round"
29
30
/>
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
+ />
30
38
</div >
31
39
32
40
<TaskItem
@@ -101,7 +109,16 @@ export default {
101
109
task
102
110
})
103
111
)
112
+ },
113
+
114
+ refresh () {
115
+ this .$refs .tasks .$apollo .queries .query .refetch ()
104
116
}
105
117
}
106
118
}
107
119
</script >
120
+
121
+ <style lang="stylus" scoped>
122
+ .search
123
+ margin-right 6px
124
+ </style >
You can’t perform that action at this time.
0 commit comments