Skip to content

Commit

Permalink
Add secondary condition for hiding attribution
Browse files Browse the repository at this point in the history
  • Loading branch information
devcshort committed Jul 18, 2024
1 parent b1b5cbd commit 3fbc526
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export function ResourceOverviewSection(props: Props) {
</>
)}

{config?.hideAttribution ? null : (
{config?.hideAttribution || props.attribution == null ? null : (
<>
<Title size="h4" mt="lg" order={3} color="primary">
{t('data_providers.provided_by', {
Expand Down

0 comments on commit 3fbc526

Please sign in to comment.