From 050f6bc4ffee1ed7572862926f830b41a7b81254 Mon Sep 17 00:00:00 2001 From: tom Date: Fri, 13 Sep 2024 12:46:06 +0200 Subject: [PATCH] Long `Call` field value in `Decoded input data` breaks adaptive UI on mobile Fixes #2216 --- ui/shared/logs/LogDecodedInputDataHeader.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/shared/logs/LogDecodedInputDataHeader.tsx b/ui/shared/logs/LogDecodedInputDataHeader.tsx index e8fad3846f..aaa4528e2f 100644 --- a/ui/shared/logs/LogDecodedInputDataHeader.tsx +++ b/ui/shared/logs/LogDecodedInputDataHeader.tsx @@ -13,6 +13,7 @@ interface Props { const Item = ({ label, children, isLoading }: { label: string; children: React.ReactNode; isLoading?: boolean}) => { return ( @@ -43,7 +45,7 @@ const LogDecodedInputDataHeader = ({ methodId, methodCall, isLoading, rightSlot { rightSlot } - { methodCall } + { methodCall } );