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
so for example i've created my own component by extending the popover class like this: export class MyCustomComponentPopover extends SatPopover implements OnInit
but the anchoring service will conflict with the next instantiated custom popover if loaded in the same module.
so if i load MyCustomComponentPopoverA & MyCustomComponentPopoverB in the same module the service will always pick MyCustomComponentPopoverB as the Popover which results in MyCustomComponentPopoverA opening MyCustomComponentPopoverB.
to fix this you'll need to provide the anchoring service anew but without using an existing anchoring service:
so for example i've created my own component by extending the popover class like this:
export class MyCustomComponentPopover extends SatPopover implements OnInit
but the anchoring service will conflict with the next instantiated custom popover if loaded in the same module.
so if i load MyCustomComponentPopoverA & MyCustomComponentPopoverB in the same module the service will always pick MyCustomComponentPopoverB as the Popover which results in MyCustomComponentPopoverA opening MyCustomComponentPopoverB.
to fix this you'll need to provide the anchoring service anew but without using an existing anchoring service:
The text was updated successfully, but these errors were encountered: