all repos — searchix @ b682ed936d8185e91331e9f66fc0e13072f8b545

Search engine for NixOS, nix-darwin, home-manager and NUR users

feat: show metadata in grid

Alan Pearce
commit

b682ed936d8185e91331e9f66fc0e13072f8b545

parent

5b9e67fd5129dec75169a1a070c70f910dff6da2

1 file changed, 3 insertions(+), 3 deletions(-)

changed files
M internal/server/option.gointernal/server/option.go
@@ -1,8 +1,8 @@
package server type NixValue struct { - Kind string `json:"_type"` - Value string `json:"text"` + Type string `json:"_type"` + Text string `json:"text"` } type Option struct {
@@ -11,5 +11,5 @@ Default NixValue
Description string Example NixValue ReadOnly bool - Kind string `json:"type"` + Type string `json:"type"` }