Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Revert unecessary angular function name changes
Browse files Browse the repository at this point in the history
This reverts commit e876fed.
romeonicholas committed Nov 14, 2023
1 parent f18189e commit c45992e
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ export class ProjectMetadataComponent {
private dialog: MatDialog,
) {}

OnInit(): void {
ngOnInit(): void {
this.projectService.project$
.pipe(untilDestroyed(this), filter(Boolean))
.subscribe((project) => (this.project = project));
Original file line number Diff line number Diff line change
@@ -33,15 +33,15 @@ export class ProjectAuditLogComponent {
private data: { projectSlug: string },
) {}

OnInit() {
ngOnInit() {
this.projectAuditLogService.loadProjectHistoryEvents(
this.data.projectSlug,
1,
this.pageSize,
);
}

AfterViewInit(): void {
ngAfterViewInit(): void {
this.observeVisibleEvents(this.data.projectSlug);
}

0 comments on commit c45992e

Please sign in to comment.