Skip to content

Commit

Permalink
Merge branch 'UD-1369' of github.com:undistro/cel-playground into UD-…
Browse files Browse the repository at this point in the history
…1369
  • Loading branch information
joaovictor3g committed Apr 26, 2024
2 parents 4e989c6 + 1ebd073 commit c035bc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions k8s/evals.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ type lazyEvalMap map[string]*lazyVariableEval

type EvalVariable struct {
Name string `json:"name"`
Value any `json:"value"`
Value any `json:"value,omitempty"`
Cost *uint64 `json:"cost,omitempty"`
IsError bool `json:"isError"`
IsError bool `json:"isError,omitempty"`
Error *string `json:"error,omitempty"`
}

Expand All @@ -110,7 +110,7 @@ type EvalResult struct {
Result any `json:"result,omitempty"`
Cost *uint64 `json:"cost,omitempty"`
Error *string `json:"error,omitempty"`
IsError bool `json:"isError"`
IsError bool `json:"isError,omitempty"`
Message any `json:"message,omitempty"`
}

Expand Down
Binary file modified web/assets/main.wasm.gz
Binary file not shown.

0 comments on commit c035bc5

Please sign in to comment.