Skip to content

Commit b4694a7

Browse files
committed
feat: update harvester config install panel
Better reflects the new url sourcing capabilities.
1 parent 2f6bcbe commit b4694a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/console/install_panels.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2344,14 +2344,14 @@ func addProxyPanel(c *Console) error {
23442344
}
23452345

23462346
func addCloudInitPanel(c *Console) error {
2347-
cloudInitV, err := widgets.NewInput(c.Gui, cloudInitPanel, "HTTP URL", false)
2347+
cloudInitV, err := widgets.NewInput(c.Gui, cloudInitPanel, "URL", false)
23482348
if err != nil {
23492349
return err
23502350
}
23512351
cloudInitV.PreShow = func() error {
23522352
c.Gui.Cursor = true
23532353
cloudInitV.Value = c.config.Install.ConfigURL
2354-
return c.setContentByName(titlePanel, "Optional: remote Harvester config")
2354+
return c.setContentByName(titlePanel, "Optional: Harvester config file (file:// or http://)")
23552355
}
23562356
gotoNextPage := func() error {
23572357
if err := cloudInitV.Close(); err != nil {

0 commit comments

Comments
 (0)