Fix GUI actions for Edge browser control (#6336)

This commit is contained in:
Marc Bernard 2023-07-08 02:02:51 -04:00 committed by GitHub
parent d17a5989aa
commit 09b14c4f5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,8 +43,9 @@ CLASS zcl_abapgit_gui_event IMPLEMENTATION.
METHOD constructor.
" Edge Webview control returns upper case action but abapGit requires lower case (#4841)
zif_abapgit_gui_event~mi_gui_services = ii_gui_services.
zif_abapgit_gui_event~mv_action = iv_action.
zif_abapgit_gui_event~mv_action = to_lower( iv_action ).
zif_abapgit_gui_event~mv_getdata = iv_getdata.
zif_abapgit_gui_event~mt_postdata = it_postdata.