We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb16b00 commit 1936388Copy full SHA for 1936388
projects/igniteui-angular-elements/src/app/wrapper/template-ref-wrapper.ts
@@ -12,8 +12,9 @@ export class TemplateRefWrapper<C extends object> extends TemplateRef<C> {
12
13
public override readonly elementRef: ElementRef<any>;
14
15
+ /** @internal Angular 20 This was abstract getter now it's not. */
16
public get ssrId(): string | null {
- return (this as any)._declarationTContainer?.tView?.ssrId || null;
17
+ return (this.innerTemplateRef as any).ssrId;
18
}
19
20
/** Create a wrapper around TemplateRef with the context exposed */
0 commit comments