settings: fix search with groups

works now, as in searching for a group's name works, and seeing matches
within groups works.
This commit is contained in:
Harvey Tindall
2025-11-25 14:43:56 +00:00
parent fe20187b0c
commit 08c350d50b
4 changed files with 254 additions and 143 deletions
+10 -4
View File
@@ -2,15 +2,21 @@ module github.com/hrfee/jfa-go/scripts/ini
replace github.com/hrfee/jfa-go/common => ../../common
replace github.com/hrfee/jfa-go/logmessages => ../../logmessages
go 1.22.4
require (
github.com/fatih/color v1.18.0 // indirect
github.com/hrfee/jfa-go/common v0.0.0-20240824141650-fcdd4e451882 // indirect
github.com/fatih/color v1.18.0
github.com/hrfee/jfa-go/common v0.0.0-00010101000000-000000000000
gopkg.in/ini.v1 v1.67.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/hrfee/jfa-go/logmessages v0.0.0-20240806200606-6308db495a0a // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/stretchr/testify v1.11.1 // indirect
golang.org/x/sys v0.25.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)