Skip to content

Commit

Permalink
fix: bindings param optionality
Browse files Browse the repository at this point in the history
  • Loading branch information
CertainLach committed Jun 18, 2024
1 parent a9e8c4e commit 934a80c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/jrsonnet-evaluator/src/function/builtin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl NativeCallback {
.into_iter()
.map(|n| BuiltinParam {
name: ParamName::new_dynamic(n),
default: ParamDefault::Exists,
default: ParamDefault::None,
})
.collect(),
handler: tb!(handler),
Expand Down

0 comments on commit 934a80c

Please sign in to comment.