Fix activity (#2415)

Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
Denis Bykhov 2022-12-03 00:28:50 +06:00 committed by GitHub
parent 1bcc1dfc82
commit 1dbab23a03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,8 +132,8 @@
<TxView <TxView
{tx} {tx}
{viewlets} {viewlets}
isNew={newTxPos <= i && newTxPos !== -1} isNew={newTxPos >= i && newTxPos !== -1}
isNextNew={newTxPos < i && newTxPos !== -1} isNextNew={newTxPos > i && newTxPos !== -1}
/> />
{/each} {/each}
</Grid> </Grid>
@ -174,8 +174,8 @@
<TxView <TxView
{tx} {tx}
{viewlets} {viewlets}
isNew={newTxPos <= i && newTxPos !== -1} isNew={newTxPos >= i && newTxPos !== -1}
isNextNew={newTxPos < i && newTxPos !== -1} isNextNew={newTxPos > i && newTxPos !== -1}
/> />
{/each} {/each}
</Grid> </Grid>