Skip to content

Commit

Permalink
update table head titles
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita-Polyakov committed Mar 6, 2024
1 parent 6243ddd commit 08f2052
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/pages/Swap/Widget/Transactions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</s-table-column>
<s-table-column width="76">
<template #header>
<span>Time</span>
<span>{{ t('transaction.startTime') }}</span>
</template>
<template v-slot="{ row }">
<div class="explore-table-item-date">
Expand All @@ -29,15 +29,15 @@
</s-table-column>
<s-table-column width="94">
<template #header>
<span>Account</span>
<span>{{ tc('accountText', 1) }}</span>
</template>
<template v-slot="{ row }">
<formatted-address :value="row.address" :symbols="8" />
</template>
</s-table-column>
<s-table-column width="112" header-align="left" align="left">
<template #header>
<span>Input</span>
<span>{{ t('transfers.from') }}</span>
</template>
<template v-slot="{ row }">
<div class="explore-table-cell">
Expand All @@ -52,7 +52,7 @@
</s-table-column>
<s-table-column width="112" header-align="left" align="left">
<template #header>
<span>Output</span>
<span>{{ t('transfers.to') }}</span>
</template>
<template v-slot="{ row }">
<div class="explore-table-cell">
Expand All @@ -67,7 +67,7 @@
</s-table-column>
<s-table-column width="140" header-align="right" align="right">
<template #header>
<span>Sold</span>
<span>{{ t('removeLiquidity.input') }}</span>
</template>
<template v-slot="{ row }">
<formatted-amount
Expand All @@ -79,7 +79,7 @@
</s-table-column>
<s-table-column width="140" header-align="left" align="left">
<template #header>
<span>Bought</span>
<span>{{ t('removeLiquidity.output') }}</span>
</template>
<template v-slot="{ row }">
<formatted-amount
Expand Down

0 comments on commit 08f2052

Please sign in to comment.