mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-22 11:42:30 +03:00
Fix activity (#2415)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
This commit is contained in:
parent
1bcc1dfc82
commit
1dbab23a03
@ -132,8 +132,8 @@
|
||||
<TxView
|
||||
{tx}
|
||||
{viewlets}
|
||||
isNew={newTxPos <= i && newTxPos !== -1}
|
||||
isNextNew={newTxPos < i && newTxPos !== -1}
|
||||
isNew={newTxPos >= i && newTxPos !== -1}
|
||||
isNextNew={newTxPos > i && newTxPos !== -1}
|
||||
/>
|
||||
{/each}
|
||||
</Grid>
|
||||
@ -174,8 +174,8 @@
|
||||
<TxView
|
||||
{tx}
|
||||
{viewlets}
|
||||
isNew={newTxPos <= i && newTxPos !== -1}
|
||||
isNextNew={newTxPos < i && newTxPos !== -1}
|
||||
isNew={newTxPos >= i && newTxPos !== -1}
|
||||
isNextNew={newTxPos > i && newTxPos !== -1}
|
||||
/>
|
||||
{/each}
|
||||
</Grid>
|
||||
|
Loading…
Reference in New Issue
Block a user