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
During the check for struct tags, nested components are iterated, too (if they are not pointers).
If a component has a configure method it is called. However this does only work if the component is public.
typeFoostruct {
sub1Component// Configure is not calledSub2Component// Configure is called
}
See if there is a way to make this work on private members, too.
The text was updated successfully, but these errors were encountered:
As a sidenote: Due to the embedded structs being public they show up in the godocs documentation. This is important as configuration parameters are inherited but not shown in the godocs pages. Clicking on the embedded members somewhat solves this problem.
During the check for struct tags, nested components are iterated, too (if they are not pointers).
If a component has a configure method it is called. However this does only work if the component is public.
See if there is a way to make this work on private members, too.
The text was updated successfully, but these errors were encountered: