Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit 00e6718

Browse files
jofaullars-reimann
andauthored
feat(gui): boundaryform default value is now x >= 0, no upper limit (#944)
* boundaryform default value is now x >= 0, no upper limit * style: apply automatic fixes of linters Co-authored-by: jofaul <[email protected]> Co-authored-by: Lars Reimann <[email protected]>
1 parent c079b9a commit 00e6718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api-editor/gui/src/features/annotations/forms/BoundaryForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const initialFormState = function (previousAnnotation: BoundaryAnnotation | void
4949
lowerIntervalLimit: previousAnnotation?.interval?.lowerIntervalLimit ?? 0,
5050
lowerLimitType: previousAnnotation?.interval?.lowerLimitType ?? ComparisonOperator.LESS_THAN_OR_EQUALS,
5151
upperIntervalLimit: previousAnnotation?.interval?.upperIntervalLimit ?? 1,
52-
upperLimitType: previousAnnotation?.interval?.upperLimitType ?? ComparisonOperator.LESS_THAN_OR_EQUALS,
52+
upperLimitType: previousAnnotation?.interval?.upperLimitType ?? ComparisonOperator.UNRESTRICTED,
5353
},
5454
comment: previousAnnotation?.comment ?? '',
5555
};

0 commit comments

Comments
 (0)