Skip to content

Commit

Permalink
fix: Remove AE label from gas value (#942)
Browse files Browse the repository at this point in the history
  • Loading branch information
janmichek authored Oct 23, 2024
1 parent 38e2232 commit 4046115
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/TransactionGeneralPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<tr class="transaction-general-panel__row">
<th class="transaction-general-panel__table-header">
<hint-tooltip>
{{ transactionsHints.keyblockHeight }}
{{ transactionsHints.type }}
</hint-tooltip>
Transaction Type
</th>
Expand Down
4 changes: 2 additions & 2 deletions src/components/TransactionTypeTableContractCallTx.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
</th>
<td class="transaction-type-panel-contract-call-tx__data">
<div class="transaction-type-panel-contract-call-tx__container">
<price-label :price="transactionData.gas"/>
{{ transactionData.gas }}
/
<price-label :price="formatAettosToAe(transactionData.gasPrice)"/>
</div>
Expand All @@ -138,7 +138,7 @@
</th>
<td class="transaction-type-panel-contract-call-tx__data">
<div class="transaction-type-panel-contract-call-tx__container">
<price-label :price="transactionData.gasUsed"/>
{{ transactionData.gasUsed }}
/
<price-label :price="formatAettosToAe(gasCosts)"/>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/TransactionTypeTableContractCreateTx.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
</th>
<td class="transaction-type-panel-contract-create-tx__data">
<div class="transaction-type-panel-contract-create-tx__container">
<price-label :price="transactionData.gas"/>
{{ transactionData.gas }}
/
<price-label :price="formatAettosToAe(transactionData.gasPrice)"/>
</div>
Expand All @@ -97,7 +97,7 @@
</th>
<td class="transaction-type-panel-contract-create-tx__data">
<div class="transaction-type-panel-contract-create-tx__container">
<price-label :price="transactionData.gasUsed"/>
{{ transactionData.gasUsed }}
/
<price-label :price="formatAettosToAe(gasCosts)"/>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/TransactionTypeTableGAAttachTx.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
</th>
<td class="transaction-type-panel-ga-attach-tx__data">
<div class="transaction-type-panel-ga-attach-tx__container">
<price-label :price="transactionData.gas"/>
{{ transactionData.gas }}
/
<price-label :price="formatAettosToAe(transactionData.gasPrice)"/>
</div>
Expand All @@ -98,7 +98,7 @@
</th>
<td class="transaction-type-panel-ga-attach-tx__data">
<div class="transaction-type-panel-ga-attach-tx__container">
<price-label :price="transactionData.gasUsed"/>
{{ transactionData.gasUsed }}
/
<price-label :price="formatAettosToAe(gasCosts)"/>
</div>
Expand Down

0 comments on commit 4046115

Please sign in to comment.