[Glitch] Fix hashtag links always being lowercase
Port 5e35aa8280
to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
parent
e8e980cdac
commit
e8ad0a8006
|
@ -172,7 +172,7 @@ export default class StatusContent extends React.PureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
onHashtagClick = (hashtag, e) => {
|
onHashtagClick = (hashtag, e) => {
|
||||||
hashtag = hashtag.replace(/^#/, '').toLowerCase();
|
hashtag = hashtag.replace(/^#/, '');
|
||||||
|
|
||||||
if (this.props.parseClick) {
|
if (this.props.parseClick) {
|
||||||
this.props.parseClick(e, `/timelines/tag/${hashtag}`);
|
this.props.parseClick(e, `/timelines/tag/${hashtag}`);
|
||||||
|
|
Loading…
Reference in New Issue