feat: show scores in results table in dev mode
1 file changed, 9 insertions(+), 0 deletions(-)
changed files
M internal/components/combined.templ → internal/components/combined.templ
@@ -1,6 +1,7 @@ package components import ( + "go.alanpearce.eu/searchix/internal/config" "go.alanpearce.eu/searchix/internal/index" "go.alanpearce.eu/searchix/internal/nix" )@@ -11,6 +12,9 @@ <thead> <tr> <th scope="col">Attribute</th> <th scope="col">Description</th> + if config.DevMode { + <th scope="col">Score</th> + } </tr> </thead> <tbody>@@ -31,6 +35,11 @@ { firstSentence(o.Description) } } } </td> + if config.DevMode { + <td> + @score(hit) + </td> + } </tr> } </tbody>