Skip to content

Commit f695830

Browse files
authored
fix(docs): update changelog path (#488)
1 parent e3227ae commit f695830

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/changelog/changelog.service.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ import { catchError, map } from 'rxjs/operators'
66

77
@Injectable()
88
export class ChangelogService {
9-
private readonly url = 'https://raw.githubusercontent.com/angular-split/angular-split/main/CHANGELOG.md'
9+
private readonly url = 'https://raw.githubusercontent.com/angular-split/angular-split/refs/heads/main/projects/CHANGELOG.md'
1010
private cachedHtml = ''
1111

1212
constructor(private http: HttpClient) {
1313
marked.setOptions({})
1414
}
1515

16+
1617
getHtml(): Observable<string> {
1718
if (this.cachedHtml !== '') {
1819
return of(this.cachedHtml)

0 commit comments

Comments
 (0)