From 8df19a544359b488dfc069bfd27907d2b093c246 Mon Sep 17 00:00:00 2001 From: Le Vivilet Date: Tue, 26 May 2026 13:45:17 +0200 Subject: [PATCH 1/4] refactor: update TODO comments for selectAll function clarity --- packages/explorer-view/src/parts/SelectAll/SelectAll.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/explorer-view/src/parts/SelectAll/SelectAll.ts b/packages/explorer-view/src/parts/SelectAll/SelectAll.ts index 2ce2c8ec5..de9b43aac 100644 --- a/packages/explorer-view/src/parts/SelectAll/SelectAll.ts +++ b/packages/explorer-view/src/parts/SelectAll/SelectAll.ts @@ -1,5 +1,8 @@ import type { ExplorerState } from '../ExplorerState/ExplorerState.ts' + +// TODO select all should only select all items in the current folder +// and when calling it next item, expand selection to its parent folder export const selectAll = (state: ExplorerState): ExplorerState => { const { items } = state const newItems = items.map((item) => ({ From 96b35674476cee7bf45f8c7a67eb5ac6c96dc962 Mon Sep 17 00:00:00 2001 From: Le Vivilet Date: Tue, 26 May 2026 15:32:42 +0200 Subject: [PATCH 2/4] ci --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a05f46240..4feec4923 100644 --- a/README.md +++ b/README.md @@ -10,3 +10,5 @@ cd explorer-view && npm ci && npm test ``` + + From 232e4d5c1fc5a654896a4b590dc05fc19dd164d9 Mon Sep 17 00:00:00 2001 From: Le Vivilet Date: Tue, 26 May 2026 23:40:59 +0200 Subject: [PATCH 3/4] ci --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 4feec4923..a05f46240 100644 --- a/README.md +++ b/README.md @@ -10,5 +10,3 @@ cd explorer-view && npm ci && npm test ``` - - From 9a0dccfb269cc221cf4ff2c745938dbd6fd7915b Mon Sep 17 00:00:00 2001 From: Le Vivilet Date: Wed, 27 May 2026 00:18:36 +0200 Subject: [PATCH 4/4] fix --- packages/explorer-view/src/parts/SelectAll/SelectAll.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/explorer-view/src/parts/SelectAll/SelectAll.ts b/packages/explorer-view/src/parts/SelectAll/SelectAll.ts index de9b43aac..d3476807c 100644 --- a/packages/explorer-view/src/parts/SelectAll/SelectAll.ts +++ b/packages/explorer-view/src/parts/SelectAll/SelectAll.ts @@ -1,6 +1,5 @@ import type { ExplorerState } from '../ExplorerState/ExplorerState.ts' - // TODO select all should only select all items in the current folder // and when calling it next item, expand selection to its parent folder export const selectAll = (state: ExplorerState): ExplorerState => {