Skip to content

Commit

Permalink
Fix equals
Browse files Browse the repository at this point in the history
Signed-off-by: Dj Walker-Morgan <[email protected]>
  • Loading branch information
djw-m authored and josh-heyer committed Jan 14, 2025
1 parent 8ba7df6 commit ebfad63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/version-dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const VersionDropdown = ({
active={activeVersion === version.version}
>
Version {version.version}{" "}
{version.version == roundedVersion && preciseVersion
{version.version === roundedVersion && preciseVersion
? `(${preciseVersion})`
: ""}
</DropdownItem>
Expand Down

0 comments on commit ebfad63

Please sign in to comment.