Skip to content

Commit

Permalink
LPS-128194 Prepare JS to delete the author information when this info…
Browse files Browse the repository at this point in the history
… is empty.
  • Loading branch information
cgoncas committed Mar 2, 2021
1 parent c92b53f commit ddb298f
Showing 1 changed file with 7 additions and 5 deletions.
Expand Up @@ -94,11 +94,13 @@ function BasicInformation({
</ClayLayout.ContentCol>
</ClayLayout.ContentRow>

<ClayLayout.ContentRow>
<ClayLayout.ContentCol expand>
<Author author={author} />
</ClayLayout.ContentCol>
</ClayLayout.ContentRow>
{author && (
<ClayLayout.ContentRow>
<ClayLayout.ContentCol expand>
<Author author={author} />
</ClayLayout.ContentCol>
</ClayLayout.ContentRow>
)}
</div>
);
}
Expand Down

0 comments on commit ddb298f

Please sign in to comment.