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 <konrad@kola-entertainments.de> Co-authored-by: azymondrian <azymondrian@protonmail.com> Co-committed-by: azymondrian <azymondrian@protonmail.com>
This commit is contained in:
@ -139,6 +139,12 @@
|
||||
</span>
|
||||
</span>
|
||||
<h3>{{ task.title }}</h3>
|
||||
<progress
|
||||
class="progress is-small"
|
||||
v-if="task.percentDone > 0"
|
||||
:value="task.percentDone * 100" max="100">
|
||||
{{ task.percentDone * 100 }}%
|
||||
</progress>
|
||||
<labels :labels="task.labels"/>
|
||||
<div class="footer">
|
||||
<div class="items">
|
||||
|
Reference in New Issue
Block a user