From 901baaf29821818565e299d9513bc3a0dbd4b30f Mon Sep 17 00:00:00 2001 From: Tim Pechersky Date: Tue, 24 Aug 2021 18:52:46 +0200 Subject: [PATCH 1/2] fix properties --- frontend/src/components/StreamEntry.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/StreamEntry.js b/frontend/src/components/StreamEntry.js index 30972b0d..520f1b17 100644 --- a/frontend/src/components/StreamEntry.js +++ b/frontend/src/components/StreamEntry.js @@ -36,11 +36,17 @@ const StreamEntry_ = ({ entry, showOnboardingTooltips, className }) => { spacing={0} > {entry.event_type === "ethereum_blockchain" && ( - + )} {entry.event_type === "ethereum_whalewatch" && ( - + )} From ffd35a9749c0eee975461f4b6d6224c4ba25fea7 Mon Sep 17 00:00:00 2001 From: Tim Pechersky Date: Tue, 24 Aug 2021 19:06:18 +0200 Subject: [PATCH 2/2] welcome page --- frontend/pages/welcome.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend/pages/welcome.js b/frontend/pages/welcome.js index 03e6b25a..178b8d34 100644 --- a/frontend/pages/welcome.js +++ b/frontend/pages/welcome.js @@ -442,9 +442,11 @@ const Welcome = () => { mt={20} entry={{ event_type: "ethereum_blockchain", - from_address: "this is address from", - to_address: "this is to address", - hash: "this is hash", + event_data: { + from: "this is address from", + to: "this is to address", + hash: "this is hash", + }, }} showOnboardingTooltips={true} />