Skip to content

Commit

Permalink
Merge pull request wevote#4129 from fdiazq/develop
Browse files Browse the repository at this point in the history
WV-543 Adjusted length of text for follow button on popular topics
  • Loading branch information
DaleMcGrew authored Oct 19, 2024
2 parents 488931f + b6520b6 commit 8c227c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/components/Values/IssueFollowToggleButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class IssueFollowToggleButton extends Component {
isFollowing: false,
isFollowingLocalValue: false,
open: false,
anchorEl: null
anchorEl: null,
});
}

Expand All @@ -164,7 +164,7 @@ class IssueFollowToggleButton extends Component {
const { isFollowing } = this.state;
let followButtonText = 'Follow';
if (showIssueNameOnFollowButton) {
followButtonText = shortenText(`Follow ${issueName}`, 27);
followButtonText = shortenText(`Follow ${issueName}`, 24);
}
return (
<div className="issues-follow-container" id="issues-follow-container">
Expand Down

0 comments on commit 8c227c2

Please sign in to comment.