From c98f2a0be63cc875638761d933f594b20cd29b0e Mon Sep 17 00:00:00 2001 From: BokkyPooBah Date: Tue, 10 Sep 2024 11:34:45 +1000 Subject: [PATCH] ui agent wip --- docs/agent.js | 2 +- docs/data.js | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/agent.js b/docs/agent.js index 6a06681..f9739cf 100644 --- a/docs/agent.js +++ b/docs/agent.js @@ -116,7 +116,7 @@ const Agent = { - + diff --git a/docs/data.js b/docs/data.js index af14fe7..56bbe6a 100644 --- a/docs/data.js +++ b/docs/data.js @@ -209,11 +209,11 @@ const dataModule = { if (!(info.address in state.tokenContracts[info.chainId])) { Vue.set(state.tokenContracts[info.chainId], info.address, { type: info.type, - symbol: info.symbol || null, - name: info.name || null, - decimals: info.decimals || null, - totalSupply: info.totalSupply || null, - slug: info.slug || null, + symbol: info.symbol, + name: info.name, + decimals: info.decimals, + totalSupply: info.totalSupply, + slug: info.slug, image: info.image, watch: false, transfers: false,