From 1ef1511a4a21c4454d0485225f2bfd780718b443 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20D=C3=ADaz=20Gonz=C3=A1lez?= Date: Thu, 14 Mar 2024 10:02:19 +0000 Subject: [PATCH] web: Display section description only if not loading --- web/src/components/storage/ProposalResultSection.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/storage/ProposalResultSection.jsx b/web/src/components/storage/ProposalResultSection.jsx index 17fe5c3044..fd07fc41eb 100644 --- a/web/src/components/storage/ProposalResultSection.jsx +++ b/web/src/components/storage/ProposalResultSection.jsx @@ -265,7 +265,7 @@ export default function ProposalResultSection({ // TRANSLATORS: The storage "Result" section's title title={_("Result")} // TRANSLATORS: The storage "Result" section's description - description={errors.length === 0 && description} + description={!isLoading && errors.length === 0 && description} id="storage-result" errors={errors} >