Skip to content

Commit 170a200

Browse files
committed
chore(new-issuer): change loading indicator for transaction table
1 parent e319927 commit 170a200

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

  • packages/new-polymath-issuer/src/pages/DividendDetails

packages/new-polymath-issuer/src/pages/DividendDetails/Presenter.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -476,19 +476,19 @@ export const Presenter = ({
476476
</CardPrimary>
477477
</GridRow.Col>
478478
</GridRow>
479+
<Heading variant="h2" mt="l" mb="m">
480+
Transactions
481+
</Heading>
479482
{loading ? (
480483
<Box mt="l" mb="m">
481484
<LoadingDots />
482485
</Box>
483486
) : (
484-
<Heading variant="h2" mt="l" mb="m">
485-
Transactions
486-
</Heading>
487+
<Table columns={columns} data={transactions}>
488+
<Table.Rows />
489+
<Table.Pagination />
490+
</Table>
487491
)}
488-
<Table columns={columns} data={transactions}>
489-
<Table.Rows />
490-
<Table.Pagination />
491-
</Table>
492492
</div>
493493
);
494494
};

0 commit comments

Comments
 (0)