Skip to content

Commit

Permalink
Go back to normal strings for enum values
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Sep 24, 2024
1 parent dbc576f commit bf9c864
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/base/convert-type.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let
}
else if (type.name == "enum") then {
type = "enum";
values = map (x: { name = x; title = x; }) type.functor.payload;
values = type.functor.payload;
}
else if (type.name == "either") then {
type = "either";
Expand Down

0 comments on commit bf9c864

Please sign in to comment.