Fix "undefined" on console usage

This commit is contained in:
ernstmul
2024-09-30 09:07:40 +02:00
parent 0276c9d358
commit f477470fa8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -26,7 +26,7 @@
<p class="body-text-2">
{maxValue}
{maxUnit && maxUnit}
{maxUnit ? maxUnit : ''}
</p>
</div>
{/if}
@@ -237,7 +237,7 @@
<ProgressBarBig
currentUnit="Executions"
currentValue={formatNum(current)}
maxValue={`of ${formatNum(max)} Executions used`}
maxValue={`of ${formatNum(max)} executions used`}
progressValue={current}
progressMax={max}
showBar={false} />