Skip to content

Commit

Permalink
timeline: hide hidden files
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Patil <[email protected]>
  • Loading branch information
pulsejet committed Mar 4, 2024
1 parent 2533108 commit 629f40d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [Unreleased]

- Hide files starting with `.` in the timeline

## [v6.2.2] - 2024-01-10

- Hotfix for a bug in request pipelining.
Expand Down
1 change: 1 addition & 0 deletions src/components/Timeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1060,6 +1060,7 @@ export default defineComponent({
for (const photo of data) {
// Skip hidden files
if (photo.ishidden) continue;
if (photo.basename?.startsWith('.')) continue;
// Add to first pass result
res1.push(photo);
Expand Down

0 comments on commit 629f40d

Please sign in to comment.