mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
Fix Unexpected Functionality for "Maximum Length of Comment" Field (#6871)
Co-authored-by: Marc Bernard <59966492+mbtools@users.noreply.github.com>
This commit is contained in:
parent
17a59c4a35
commit
c40964ec33
|
@ -247,7 +247,7 @@ CLASS zcl_abapgit_html_form_utils IMPLEMENTATION.
|
|||
DATA:
|
||||
lt_fields TYPE zif_abapgit_html_form=>ty_fields,
|
||||
lv_value TYPE string,
|
||||
lv_number TYPE i.
|
||||
lv_number TYPE p LENGTH 16 DECIMALS 0.
|
||||
|
||||
FIELD-SYMBOLS <ls_field> LIKE LINE OF lt_fields.
|
||||
|
||||
|
|
|
@ -145,7 +145,8 @@ CLASS zcl_abapgit_gui_page_sett_glob IMPLEMENTATION.
|
|||
iv_required = abap_true
|
||||
iv_label = 'Maximum Length of Comment'
|
||||
iv_hint = |At most { zcl_abapgit_settings=>c_commitmsg_comment_length_dft } characters|
|
||||
iv_min = zcl_abapgit_settings=>c_commitmsg_comment_length_dft
|
||||
iv_min = 1
|
||||
iv_max = 255
|
||||
)->text(
|
||||
iv_name = c_id-commitmsg_comment_deflt
|
||||
iv_label = 'Default Text For Comment'
|
||||
|
|
Loading…
Reference in New Issue
Block a user