mirror of
https://github.com/appwrite/console.git
synced 2026-04-07 19:17:46 +00:00
Fix "undefined" on console usage
This commit is contained in:
@@ -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} />
|
||||
|
||||
Reference in New Issue
Block a user