Hi, I am having an issue with tab panel. It seems...
# kvision
t
Hi, I am having an issue with tab panel. It seems after upgrading 4->5 function
afterInsert(node:Vnode)
is not called on tab child component.
r
If you override
afterInsert
in your class and it's not called when you want it to, you probably need to add
useSnabbdomDistinctKey()
in your class init block. See: https://kvision.gitbook.io/kvision-guide/2.-frontend-development-guide/dom-bindings#lifecycle-hooks
t
Thank you, that fixed it.