diff options
author | Phil Hughes <me@iamphill.com> | 2018-11-12 08:51:06 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-11-12 14:42:22 +0000 |
commit | eaca2033d5145d8f679ecfe948a2d4ed909088ea (patch) | |
tree | d039f99abe07aa9e33ffee44f11af11934d17660 /app/assets/javascripts/diffs | |
parent | 2e690c8208e9da5e7152e77cd77efdade5260be1 (diff) | |
download | gitlab-ce-eaca2033d5145d8f679ecfe948a2d4ed909088ea.tar.gz |
Changed diff tree filtering to path
Previously it was using name which could make it hard
to filter for the file you want in a certain folder.
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/53781
Diffstat (limited to 'app/assets/javascripts/diffs')
-rw-r--r-- | app/assets/javascripts/diffs/components/tree_list.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/diffs/components/tree_list.vue b/app/assets/javascripts/diffs/components/tree_list.vue index 91052b303a6..ff1eb23cea3 100644 --- a/app/assets/javascripts/diffs/components/tree_list.vue +++ b/app/assets/javascripts/diffs/components/tree_list.vue @@ -35,7 +35,7 @@ export default { if (search === '') return this.renderTreeList ? this.tree : this.allBlobs; - return this.allBlobs.filter(f => f.name.toLowerCase().indexOf(search) >= 0); + return this.allBlobs.filter(f => f.path.toLowerCase().indexOf(search) >= 0); }, rowDisplayTextKey() { if (this.renderTreeList && this.search.trim() === '') { |