Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Jul 2, 2024
1 parent dede025 commit 95863bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/ng-polymorpheus/src/directives/template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class PolymorpheusTemplate<C = any> {
public polymorpheus: C | '' = '';

constructor(
readonly template: TemplateRef<C> = inject(TemplateRef<C>, {self: true}),
public readonly template: TemplateRef<C> = inject(TemplateRef<C>, {self: true}),
private readonly cdr: ChangeDetectorRef = inject(ChangeDetectorRef),
) {}

Expand Down

0 comments on commit 95863bd

Please sign in to comment.