Skip to content

Commit

Permalink
fix(ui): commit URL txt files
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuar committed Oct 22, 2023
1 parent d3057bd commit eb07d91
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
!*.yml
!*.yaml
!*.md
!*.txt
!go.sum
!go.mod
!assets/
Expand Down
1 change: 1 addition & 0 deletions internal/app/assets/urls/featureRequestURL.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://github.com/joshuar/autocorrector/issues/new?assignees=&labels=&template=feature_request.md&title=
1 change: 1 addition & 0 deletions internal/app/assets/urls/issueURL.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://github.com/joshuar/autocorrector/issues/new?assignees=joshuar&labels=&template=bug_report.md&title=%5BBUG%5D
4 changes: 2 additions & 2 deletions internal/app/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ import (
"github.com/rs/zerolog/log"
)

//go:embed assets/urls/issueURL
//go:embed assets/urls/issueURL.txt
var issueURL string

//go:embed assets/urls/featureRequestURL
//go:embed assets/urls/featureRequestURL.txt
var featureRequestURL string

func newUI() fyne.App {
Expand Down

0 comments on commit eb07d91

Please sign in to comment.