Add real slot info to transactions table (#16)
* Add real slot info to transactions table * npm run format:fix
This commit is contained in:
committed by
Michael Vines
parent
ea705f9147
commit
52f5934c3d
@@ -138,6 +138,8 @@ const renderTransactionRow = (transaction: Transaction) => {
|
||||
return assertUnreachable(transaction.status);
|
||||
}
|
||||
|
||||
const slotText = `${transaction.slot || "-"}`;
|
||||
|
||||
return (
|
||||
<tr key={transaction.signature}>
|
||||
<td>
|
||||
@@ -152,7 +154,7 @@ const renderTransactionRow = (transaction: Transaction) => {
|
||||
<code>{transaction.signature}</code>
|
||||
</td>
|
||||
<td>-</td>
|
||||
<td>-</td>
|
||||
<td>{slotText}</td>
|
||||
</tr>
|
||||
);
|
||||
};
|
||||
|
Reference in New Issue
Block a user