Widget not activated for the first time

Widget not activated for the first time when switch to another routing path?
const routes = [
{
path: “home”,
component: Home,
widgets: [“detail”, “menu”]
},
{
path: “about”,
component: About,
widgets: [“detail”, “menu”]
}]
detail widget is activated on the home page, but when switching to the about page, the detail widget is not visible on the screen. any help?

Here is an example app which uses widgets:

In the App template make sure you have:

Widgets: {
        Detail: {
          type: Detail, visible: true
        },

Untitled (1)
hi @chiefcll you can check the example app, there is same issue occured in detail widget, detail widget is not active when switch from search page to home page.