diff --git a/src/components/charts/DonutChart.vue b/src/components/charts/DonutChart.vue index 5ac20c2d..bfc5e41d 100644 --- a/src/components/charts/DonutChart.vue +++ b/src/components/charts/DonutChart.vue @@ -22,9 +22,3 @@ const expenseRationChartConfig = computed(() => { :series="series" /> - - diff --git a/src/components/dynamic/TxsElement.vue b/src/components/dynamic/TxsElement.vue index 2f0cbd8f..d16621cc 100644 --- a/src/components/dynamic/TxsElement.vue +++ b/src/components/dynamic/TxsElement.vue @@ -12,11 +12,11 @@ const txs = computed(() => { return props.value?.map((x) => { const tx_bytes = fromBase64(x); let tx = null - let injected = false + let injected = 'Standard' try { tx = decodeTxRaw(fromBase64(x)) } catch(e) { - injected = true + injected = 'Injected' } return { hash: hashTx(tx_bytes), @@ -34,7 +34,7 @@ const chain = useBlockchain();
| Injected | +Type | Hash | Msgs | Memo | @@ -44,7 +44,7 @@ const chain = useBlockchain();|||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ item.injected }} |
- {{ item.hash }}
+ {{ item.hash }}
-
+
+
|