Skip to content

Commit

Permalink
fix missing icon
Browse files Browse the repository at this point in the history
  • Loading branch information
janmichek committed Jan 13, 2025
1 parent 5ed4590 commit 4985add
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 22 deletions.
1 change: 0 additions & 1 deletion src/components/StateChannelTransactionsTableCondensed.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<tbody>
<tr class="state-channel-transactions-table-condensed__row">
<th class="state-channel-transactions-table-condensed__header">
<!-- todo missing hint-->
Hash
</th>
<td class="state-channel-transactions-table-condensed__data">
Expand Down
3 changes: 1 addition & 2 deletions src/components/TransactionCellChannelCloseMutualTx.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<price-label :price="formatAettosToAe(transactionData.initiatorAmountFinal)"/>

<transaction-plus-icon/>
+

<price-label :price="formatAettosToAe(transactionData.responderAmountFinal)"/>

Expand All @@ -12,7 +12,6 @@

<script setup>
import { formatAettosToAe } from '@/utils/format'
import TransactionPlusIcon from '@/components/TransactionPlusIcon'
import ValueHashEllipsed from '@/components/ValueHashEllipsed'
defineProps({
Expand Down
3 changes: 1 addition & 2 deletions src/components/TransactionCellChannelCreateTx.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
:link-to="`/accounts/${transactionData.initiatorId}`"/>

<price-label :price="formatAettosToAe(transactionData.initiatorAmount)"/>
<transaction-plus-icon/>
+

<value-hash-ellipsed
:hash="transactionData.responderId"
Expand All @@ -22,7 +22,6 @@
<script setup>
import { formatAettosToAe } from '@/utils/format'
import TransactionArrowRightIcon from '@/components/TransactionArrowRightIcon'
import TransactionPlusIcon from '@/components/TransactionPlusIcon'
import ValueHashEllipsed from '@/components/ValueHashEllipsed'
defineProps({
Expand Down
3 changes: 1 addition & 2 deletions src/components/TransactionCellChannelSettleTx.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<price-label :price="formatAettosToAe(transactionData.initiatorAmountFinal)"/>

<transaction-plus-icon/>
+

<price-label :price="formatAettosToAe(transactionData.responderAmountFinal)"/>

Expand All @@ -19,7 +19,6 @@
<script setup>
import { formatAettosToAe } from '@/utils/format'
import TransactionArrowRightIcon from '@/components/TransactionArrowRightIcon'
import TransactionPlusIcon from '@/components/TransactionPlusIcon'
import ValueHashEllipsed from '@/components/ValueHashEllipsed'
defineProps({
Expand Down
15 changes: 0 additions & 15 deletions src/components/TransactionPlusIcon.vue

This file was deleted.

0 comments on commit 4985add

Please sign in to comment.