report read row count, if written row count not available

This commit is contained in:
SPRINX0\prochazka
2025-03-04 15:17:58 +01:00
parent bffc34485a
commit 1d474a967c
3 changed files with 29 additions and 2 deletions

View File

@@ -307,7 +307,9 @@
{#if progressHolder[row]?.status == 'running'}
<FontIcon icon="icon loading" />
{#if progressHolder[row]?.writtenRowCount}
{progressHolder[row]?.writtenRowCount} rows written
{progressHolder[row]?.writtenRowCount} rows writtem
{:else if progressHolder[row]?.readRowCount}
{progressHolder[row]?.readRowCount} rows read
{:else}
Running
{/if}
@@ -325,6 +327,8 @@
<FontIcon icon="img ok" />
{#if progressHolder[row]?.writtenRowCount}
{progressHolder[row]?.writtenRowCount} rows written
{:else if progressHolder[row]?.readRowCount}
{progressHolder[row]?.readRowCount} rows read
{:else}
Done
{/if}