Skip to content

Commit

Permalink
Fixed some link names
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasperson committed Jul 29, 2024
1 parent 1a2fbf5 commit 97a3cf5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/steps/start_project_export.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func (s StartProjectExportStep) GetContainer(parent fyne.Window) *fyne.Container
}
})
linkUrl, _ := url.Parse(s.State.Server + "/app#/" + s.State.Space + "/tasks")
link := widget.NewHyperlink("Watch the tasks.", linkUrl)
link := widget.NewHyperlink("View the task list", linkUrl)
link.Hide()
s.logs = widget.NewEntry()
s.logs.SetMinRowsVisible(20)
Expand Down
2 changes: 1 addition & 1 deletion internal/steps/start_space_export.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func (s StartSpaceExportStep) GetContainer(parent fyne.Window) *fyne.Container {
`))
result := widget.NewLabel("")
linkUrl, _ := url.Parse(s.State.Server + "/app#/" + s.State.Space + "/tasks")
link := widget.NewHyperlink("Watch the tasks.", linkUrl)
link := widget.NewHyperlink("View the task list", linkUrl)
link.Hide()
infinite := widget.NewProgressBarInfinite()
infinite.Hide()
Expand Down

0 comments on commit 97a3cf5

Please sign in to comment.