From 158e697988c4d822f67f87aacd787917ff7c2820 Mon Sep 17 00:00:00 2001 From: azymondrian Date: Thu, 31 Dec 2020 15:16:07 +0000 Subject: [PATCH] Show task progress on task (#354) Shows the task completion percent as progress bar in task lists and on kanban cards. Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/354 Reviewed-by: konrad Co-authored-by: azymondrian Co-committed-by: azymondrian --- .../tasks/partials/singleTaskInList.vue | 6 ++++++ src/styles/components/kanban.scss | 6 ++++++ src/styles/components/tasks.scss | 17 +++++++++++++++-- src/styles/theme/navigation.scss | 2 +- src/views/list/views/Kanban.vue | 6 ++++++ 5 files changed, 34 insertions(+), 3 deletions(-) diff --git a/src/components/tasks/partials/singleTaskInList.vue b/src/components/tasks/partials/singleTaskInList.vue index 6cb90706d..325a91842 100644 --- a/src/components/tasks/partials/singleTaskInList.vue +++ b/src/components/tasks/partials/singleTaskInList.vue @@ -56,6 +56,12 @@ + + {{ task.percentDone * 100 }}% +

{{ task.title }}

+ + {{ task.percentDone * 100 }}% +