Skip to content

Commit

Permalink
UI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleu committed Nov 24, 2024
1 parent d70c618 commit 94c06f0
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 73 deletions.
14 changes: 6 additions & 8 deletions views/components/view/Any.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,22 @@
{%= Int(t) %}
{% case int64 %}
{%= Int(t) %}
{% case util.ValueMap %}
{%= Map(false, t, ps) %}
{% case util.ToMap %}
{%= Map(false, t.ToMap(), ps) %}
{% case util.ValueMap %}
{%= Map(false, t, ps) %}
{% case map[string]any %}
{%= Map(false, t, ps) %}
{% case util.ToOrderedMap[any] %}
{%= OrderedMap(false, t.ToOrderedMap(), ps) %}
{% case []util.ValueMap %}
{%= MapArray(false, ps, t...) %}
{% case util.ToMaps %}
{%= MapArray(false, ps, t.ToMaps()...) %}
{% case util.ToOrderedMaps[any] %}
{%= OrderedMapArray(false, ps, t.ToOrderedMaps()...) %}
{% case []util.ValueMap %}
{%= MapArray(false, ps, t...) %}
{% case util.Pkg %}
{%= Package(t) %}
{% case string %}
{%= String(t) %}
{% case []string %}
{%= StringArray(t) %}
{% case time.Time %}
{%= Timestamp(&t) %}
{% case *time.Time %}
Expand Down
126 changes: 61 additions & 65 deletions views/components/view/Any.html.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 94c06f0

Please sign in to comment.