Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UIST] Field Sort Priority adjustment to larger value #641

Merged
merged 12 commits into from
Aug 5, 2024
Merged
6 changes: 3 additions & 3 deletions file-formats/uist/type/zif_aff_uist_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ INTERFACE zif_aff_uist_v1
title TYPE zif_aff_types_v1=>ty_description_100,
"! <p class="shorttext">Sort Priority</p>
"! Sort priority
"! $minimum: -9999.999
"! $maximum: 9999.999
sort_priority TYPE p LENGTH 7 DECIMALS 3,
"! $minimum: -9999.99999
"! $maximum: 9999.99999
sort_priority TYPE p LENGTH 5 DECIMALS 5,
"! <p class="shorttext">Merge ID</p>
"! Merge ID
merge_id TYPE c LENGTH 35,
Expand Down
4 changes: 2 additions & 2 deletions file-formats/uist/uist-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
"title": "Sort Priority",
"description": "Sort priority",
"type": "number",
"minimum": -9999.999,
"maximum": 9999.999
"minimum": -9999.99999,
"maximum": 9999.99999
},
"mergeId": {
"title": "Merge ID",
Expand Down
Loading