File tree Expand file tree Collapse file tree
pages/ConsensusTransactionDetailPage Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -281,7 +281,8 @@ const RuntimeEventDetailsInner: FC<{
281281 { event . body . topics
282282 /* @ts -expect-error -- Event body is missing types */
283283 . map ( ( base64Topic , index ) => {
284- return `${ index } : 0x${ Buffer . from ( base64Topic , 'base64' ) . toString ( 'hex' ) } `
284+ // \xa0 is
285+ return `${ index } :\xa00x${ Buffer . from ( base64Topic , 'base64' ) . toString ( 'hex' ) } `
285286 } )
286287 . join ( '\n' ) }
287288 </ span >
Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ export const ConsensusTransactionDetailView: FC<{
204204 < dd > { transaction . gas_used ? transaction . gas_used . toLocaleString ( ) : t ( 'common.missing' ) } </ dd >
205205 </ AdvancedField >
206206
207- { transaction . gas_limit && (
207+ { ! ! transaction . gas_limit && (
208208 < AdvancedField >
209209 < dt > { t ( 'common.gasLimit' ) } </ dt >
210210 < dd >
You can’t perform that action at this time.
0 commit comments