We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74e6c5c commit e99ee4fCopy full SHA for e99ee4f
internal/glance/glance.go
@@ -170,6 +170,12 @@ func newApplication(c *config) (*application, error) {
170
page.DesktopNavigationWidth = page.Width
171
}
172
173
+ for i := range page.HeadWidgets {
174
+ widget := page.HeadWidgets[i]
175
+ app.widgetByID[widget.GetID()] = widget
176
+ widget.setProviders(providers)
177
+ }
178
+
179
for c := range page.Columns {
180
column := &page.Columns[c]
181
@@ -180,7 +186,6 @@ func newApplication(c *config) (*application, error) {
186
for w := range column.Widgets {
187
widget := column.Widgets[w]
182
188
app.widgetByID[widget.GetID()] = widget
183
-
184
189
widget.setProviders(providers)
185
190
191
0 commit comments