Skip to content

Commit 445347c

Browse files
committed
fix(BlocksTimelineTable): new tx icon
1 parent 529f8de commit 445347c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/data/BlocksTimeline/BlocksTimelineTable.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,9 +275,9 @@ watch(
275275
<Flex justify="between" align="center" wide>
276276
<Flex align="center" gap="8">
277277
<Icon
278-
:name="transaction.status === 'success' ? 'tx_success' : 'tx_error'"
278+
:name="transaction.status === 'success' ? 'check-circle' : 'close-circle'"
279279
size="12"
280-
color="secondary"
280+
:color="transaction.status === 'success' ? 'green' : 'red'"
281281
/>
282282

283283
<Text size="13" weight="600" color="primary" mono>{{ transaction.hash.slice(0, 4) }}</Text>

0 commit comments

Comments
 (0)