Commit 87e34f30 authored by davidzagi93@gmail.com's avatar davidzagi93@gmail.com

fix: table status not showing true

parent 92c9270e
...@@ -579,7 +579,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => { ...@@ -579,7 +579,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => {
<table className={`txTable ${showTableHash.includes(opts.hash) ? 'active' : ''}`} id='txTable' data-id={`txLoggerTable${opts.hash}`}> <table className={`txTable ${showTableHash.includes(opts.hash) ? 'active' : ''}`} id='txTable' data-id={`txLoggerTable${opts.hash}`}>
<tr className='tr'> <tr className='tr'>
<td className='td' data-shared={`key_${opts.hash}`}> status </td> <td className='td' data-shared={`key_${opts.hash}`}> status </td>
<td className='td' data-id={`txLoggerTableStatus${opts.hash}`} data-shared={`pair_${opts.hash}`}>{opts.status}{msg}</td> <td className='td' data-id={`txLoggerTableStatus${opts.hash}`} data-shared={`pair_${opts.hash}`}>{`${opts.status} ${msg}`}</td>
</tr> </tr>
<tr className='tr'> <tr className='tr'>
<td className='td' data-shared={`key_${opts.hash}`}> transaction hash </td> <td className='td' data-shared={`key_${opts.hash}`}> transaction hash </td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment