Skip to content

Commit

Permalink
Merge pull request #3479 from csordasmarton/fix_weird_file_path_filter
Browse files Browse the repository at this point in the history
[gui] Fix weird file path filter
  • Loading branch information
bruntib authored Nov 4, 2021
2 parents ee7f0e2 + d2d07b7 commit 92b5dd3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default {
return {
id : file,
title: file,
count : res[file]
count: res[file]?.toNumber() || 0
};
}));
this.loading = false;
Expand Down

0 comments on commit 92b5dd3

Please sign in to comment.