diff --git a/src/components/transaction/TransactionFilterSelect.vue b/src/components/transaction/TransactionFilterSelect.vue index c283141d8..976e9913d 100644 --- a/src/components/transaction/TransactionFilterSelect.vue +++ b/src/components/transaction/TransactionFilterSelect.vue @@ -82,9 +82,9 @@ export function makeFilterValues(nftFilter: boolean): string[] { .sort((a, b) => { return makeTypeLabel(a as TransactionType) < makeTypeLabel(b as TransactionType) ? -1 : 1; }) - if(nftFilter) { + if (nftFilter) { result = result.filter(el => { - return el === "CRYPTOTRANSFER" || el.startsWith("TOKEN"); + return el === "CRYPTOTRANSFER" || el === "TOKENMINT" || el === "CRYPTOAPPROVEALLOWANCE" || el === "CRYPTODELETEALLOWANCE" || el === "TOKENWIPE" || el === "TOKENBURN" || el === "TOKENDELETION"; }) } result.splice(0, 0, "") diff --git a/src/components/values/BlobValue.vue b/src/components/values/BlobValue.vue index b337fd6ae..e8cdc2647 100644 --- a/src/components/values/BlobValue.vue +++ b/src/components/values/BlobValue.vue @@ -24,6 +24,7 @@