mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00
Fix incorrect status of ignored files in repo view (#3506)
* Fix incorrect status of ignored filed in repo view After update of repo settings, some ignored files showed as "-/A". https://github.com/larshp/abapGit/pull/3415 * Whitespace Co-authored-by: Lars Hvam <larshp@hotmail.com>
This commit is contained in:
parent
d006cd0658
commit
ed09b51855
|
@ -350,6 +350,8 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_REPO_SETT IMPLEMENTATION.
|
|||
|
||||
" Add newly entered files
|
||||
CLEAR lt_ignore.
|
||||
REPLACE ALL OCCURRENCES OF zif_abapgit_definitions=>c_crlf IN ls_post_field-value
|
||||
WITH zif_abapgit_definitions=>c_newline.
|
||||
SPLIT ls_post_field-value AT zif_abapgit_definitions=>c_newline INTO TABLE lt_ignore.
|
||||
DELETE lt_ignore WHERE table_line IS INITIAL.
|
||||
LOOP AT lt_ignore INTO lv_ignore.
|
||||
|
|
Loading…
Reference in New Issue
Block a user