add × to ItemComposition and fix ItemProgress issues.
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-11-30 19:35:13 +01:00
parent 2cc7d81499
commit 547d993fbe
2 changed files with 9 additions and 4 deletions
+1 -1
View File
@@ -92,7 +92,7 @@
{#each list as item}
<div class="item">
{#if !allOnes}
<span class="amount">{item.amount}x&nbsp;</span>
<span class="amount">{item.amount}&times;&nbsp;</span>
{/if}
<Link to={item.link}>{item.name}</Link>
</div>
+8 -3
View File
@@ -29,7 +29,12 @@
} else {
entry.amount += task.completedAmount;
}
entry.target += task.itemAmount;
if (["completed", "failed", "declined"].includes(task.statusTag)) {
entry.target += task.itemAmount - Math.max(0, task.itemAmount - task.completedAmount);
} else {
entry.target += task.itemAmount;
}
for (const log of task.logs) {
if (log.secondaryItem != null) {
@@ -44,13 +49,13 @@
}
}
list.sort((a,b) => {
list = list.sort((a,b) => {
if (a.target === b.target) {
return a.item.name.localeCompare(b.item.name);
} else {
return b.target - a.target;
}
})
}).filter(l => l.extras > 0 || l.target > 0);
}
</script>