Skip to content

Commit

Permalink
[Site]: fixed changelog parsing pattern, that links with anchors aren…
Browse files Browse the repository at this point in the history
…'t separated as a release.
  • Loading branch information
AlekseyManetov committed Oct 26, 2023
1 parent a6f7a08 commit 59cd796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/landing/ReleasesBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class ReleasesBlock extends React.Component<{}, LandingReleasesState> {
.then((data) => {
this.setState({
markdown: data.markdown
.split('#')
.split('# ')
.filter((el: any) => el !== '')
.map((el: any) => '#'.concat(el)),
isLoaded: true,
Expand Down

0 comments on commit 59cd796

Please sign in to comment.