We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 529f8de commit 445347cCopy full SHA for 445347c
components/data/BlocksTimeline/BlocksTimelineTable.vue
@@ -275,9 +275,9 @@ watch(
275
<Flex justify="between" align="center" wide>
276
<Flex align="center" gap="8">
277
<Icon
278
- :name="transaction.status === 'success' ? 'tx_success' : 'tx_error'"
+ :name="transaction.status === 'success' ? 'check-circle' : 'close-circle'"
279
size="12"
280
- color="secondary"
+ :color="transaction.status === 'success' ? 'green' : 'red'"
281
/>
282
283
<Text size="13" weight="600" color="primary" mono>{{ transaction.hash.slice(0, 4) }}</Text>
0 commit comments