Don't lowercase transport request id (#5022)

* Don't lowercase transport request id

* fix error

* uppercase username and package too
This commit is contained in:
Frederik Hudák 2021-10-06 20:10:09 +02:00 committed by GitHub
parent 87e435dc5d
commit 4a5cf13eca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -725,9 +725,9 @@ CLASS zcl_abapgit_gui_chunk_lib IMPLEMENTATION.
IF iv_interactive = abap_true. IF iv_interactive = abap_true.
ri_html->add_a( iv_act = |{ zif_abapgit_definitions=>c_action-jump }?{ lv_jump }| ri_html->add_a( iv_act = |{ zif_abapgit_definitions=>c_action-jump }?{ lv_jump }|
iv_title = lv_title iv_title = lv_title
iv_txt = to_lower( iv_package ) ). iv_txt = |{ iv_package }| ).
ELSE. ELSE.
ri_html->add( to_lower( iv_package ) ). ri_html->add( iv_package ).
ENDIF. ENDIF.
ri_html->add( '</span>' ). ri_html->add( '</span>' ).
@ -960,9 +960,9 @@ CLASS zcl_abapgit_gui_chunk_lib IMPLEMENTATION.
IF iv_interactive = abap_true. IF iv_interactive = abap_true.
ri_html->add_a( iv_act = lv_jump ri_html->add_a( iv_act = lv_jump
iv_title = lv_title iv_title = lv_title
iv_txt = to_lower( iv_transport ) ). iv_txt = |{ iv_transport }| ).
ELSE. ELSE.
ri_html->add( to_lower( iv_transport ) ). ri_html->add( iv_transport ).
ENDIF. ENDIF.
ri_html->add( '</span>' ). ri_html->add( '</span>' ).
@ -1012,9 +1012,9 @@ CLASS zcl_abapgit_gui_chunk_lib IMPLEMENTATION.
IF iv_interactive = abap_true AND iv_username <> zcl_abapgit_objects_super=>c_user_unknown. IF iv_interactive = abap_true AND iv_username <> zcl_abapgit_objects_super=>c_user_unknown.
ri_html->add_a( iv_act = lv_jump ri_html->add_a( iv_act = lv_jump
iv_title = lv_title iv_title = lv_title
iv_txt = to_lower( iv_username ) ). iv_txt = |{ iv_username }| ).
ELSE. ELSE.
ri_html->add( to_lower( iv_username ) ). ri_html->add( iv_username ).
ENDIF. ENDIF.
ri_html->add( '</span>' ). ri_html->add( '</span>' ).