|
@@ -254,8 +254,8 @@ const columns = computed<DataTableColumns<VaultTransactionItem>>(() => [
|
|
|
render: (row) => {
|
|
render: (row) => {
|
|
|
const txid = row.transactionId?.trim()
|
|
const txid = row.transactionId?.trim()
|
|
|
if (!txid) return h('span', { class: 'vault-tx__cell-text vault-tx__cell-mono' }, '—')
|
|
if (!txid) return h('span', { class: 'vault-tx__cell-text vault-tx__cell-mono' }, '—')
|
|
|
- const unit = row.recipientAmountUnit?.trim().toUpperCase()
|
|
|
|
|
- const baseUrl = unit === 'ETH' ? ETH_TX_BASE_URL : TRON_TX_BASE_URL
|
|
|
|
|
|
|
+ const unit = row.blockchain?.trim()
|
|
|
|
|
+ const baseUrl = unit === 'ethereum' ? ETH_TX_BASE_URL : TRON_TX_BASE_URL
|
|
|
return h(
|
|
return h(
|
|
|
'a',
|
|
'a',
|
|
|
{
|
|
{
|
|
@@ -636,7 +636,6 @@ function onResetFilters(): void {
|
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
gap: 10px;
|
|
gap: 10px;
|
|
|
- //flex-wrap: wrap;
|
|
|
|
|
padding: 0 14px 10px;
|
|
padding: 0 14px 10px;
|
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
|
}
|
|
}
|