Skip to content

Commit

Permalink
Fix default asset folder not being selected
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoshino committed Nov 10, 2023
1 parent 7f792a0 commit 5fb8328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/assets/list/primary-sidebar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import { getFolderLabelByCollection } from '$lib/services/assets/view';
import { goto } from '$lib/services/navigation';
$: folders = [{ collectionName: '*', internalPath: undefined }, ...$allAssetPaths];
$: folders = [{ collectionName: '*', internalPath: '' }, ...$allAssetPaths];
</script>

<Group class="primary-sidebar">
Expand Down

0 comments on commit 5fb8328

Please sign in to comment.