Fixed issue when you create plan with 0 team members amount

This commit is contained in:
Čarodej
2022-05-10 10:48:05 +02:00
parent 6472997cc1
commit 8c75166980
6 changed files with 13 additions and 9 deletions

View File

@@ -63,7 +63,7 @@ export default {
limitations.push({
message: payload.message[key],
isVisibleBar: item.total !== -1,
isVisibleBar: item.total !== -1 && item.total !== 0,
distribution: [
{
progress: item.percentage,