mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00
Fix sorting of objects in repo view (#4346)
Regression of #4087. Closes #4339 Co-authored-by: Lars Hvam <larshp@hotmail.com>
This commit is contained in:
parent
6e4982f417
commit
73cba7ff1b
|
@ -1086,14 +1086,17 @@ CLASS zcl_abapgit_gui_page_repo_view IMPLEMENTATION.
|
|||
|
||||
ls_col_spec-tech_name = 'OBJ_TYPE'.
|
||||
ls_col_spec-display_name = 'Type'.
|
||||
ls_col_spec-allow_order_by = abap_true.
|
||||
APPEND ls_col_spec TO lt_col_spec.
|
||||
|
||||
ls_col_spec-tech_name = 'OBJ_NAME'.
|
||||
ls_col_spec-display_name = 'Name'.
|
||||
ls_col_spec-allow_order_by = abap_true.
|
||||
APPEND ls_col_spec TO lt_col_spec.
|
||||
|
||||
ls_col_spec-tech_name = 'PATH'.
|
||||
ls_col_spec-display_name = 'Path'.
|
||||
ls_col_spec-allow_order_by = abap_true.
|
||||
APPEND ls_col_spec TO lt_col_spec.
|
||||
|
||||
APPEND INITIAL LINE TO lt_col_spec.
|
||||
|
|
Loading…
Reference in New Issue
Block a user