Skip to content

Commit

Permalink
fix: set input to correct value for at-max setting (#572)
Browse files Browse the repository at this point in the history
Fixes #570
  • Loading branch information
chrispcampbell authored Dec 2, 2024
1 parent 698ffb3 commit 109d385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugin-check/template-bundle/src/inputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export function setInputsForScenario(inputs: Map<InputVarId, Input>, scenario: S
input.value.set(input.minValue)
}
function setInputToMaximum(input: Input): void {
input.value.set(input.minValue)
input.value.set(input.maxValue)
}

function setAllToDefault(): void {
Expand Down

0 comments on commit 109d385

Please sign in to comment.