feat: Port modals to no-js variant
1 file changed, 2 insertions(+), 2 deletions(-)
changed files
M internal/components/combined.go → internal/components/combined.go
@@ -20,7 +20,7 @@ return g.Text("No description Available") } -func Combined(result *index.Result) g.Node { +func Combined(result *index.Result, qs string) g.Node { return Table( THead( Tr(@@ -35,7 +35,7 @@ TBody( g.MapIter(result.Hits, func(hit index.DocumentMatch) g.Node { return Tr( Td( - openCombinedDialogLink(hit.ID), + openCombinedDialogLink(hit.ID, qs), ), Td(Class("description"), CombinedData(hit.Data),