Skip to content

Commit

Permalink
feat(VersionOverview): Show history changelog if version - refs #153334
Browse files Browse the repository at this point in the history
  • Loading branch information
avoinea committed Aug 25, 2022
1 parent 15867e4 commit 6c6a170
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const VersionOverview = ({
<Header as="h3">
<span>Frontend {frontend.version ? frontend.version : ''}</span>
</Header>
{frontend.old_version && frontend.version && (
{frontend.version && (
<a
href={[
config.settings.changelogUrlPrefix,
Expand Down Expand Up @@ -83,7 +83,7 @@ const VersionOverview = ({
<Header as="h3" textAlign="right">
Backend {backend.version ? backend.version : ''}
</Header>
{backend.old_version && backend.version && (
{backend.version && (
<a
className="ui right aligned container"
href={[
Expand Down

0 comments on commit 6c6a170

Please sign in to comment.