You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I have a component that inherits from another component and the template of the inherited component accesses variables from the base component, those variables are not being inferred on the inherited component.
Error:
WARNING in ./src/components/dialog/alert/alert.component.ts
[15, 23]: The property "title" that you're trying to access does not exist in the class declaration.
If I have a component that inherits from another component and the template of the inherited component accesses variables from the base component, those variables are not being inferred on the inherited component.
Error:
Example:
In base class, I define
title
...then inherited class template, I use
title
...The text was updated successfully, but these errors were encountered: