Skip to content

Commit

Permalink
web: Display section description only if not loading
Browse files Browse the repository at this point in the history
  • Loading branch information
dgdavid committed Mar 14, 2024
1 parent bc8b068 commit 1ef1511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/storage/ProposalResultSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
>
Expand Down

0 comments on commit 1ef1511

Please sign in to comment.