Default to list view in filesystem

This commit is contained in:
2022-11-08 16:59:30 +01:00
parent e87bcace2d
commit 1661a2fab1
3 changed files with 6 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ import GalleryView from './GalleryView.svelte'
let dispatch = createEventDispatcher()
export let state
export let directory_view = "gallery"
export let directory_view = "list"
let uploader
let mode = "viewing"
let creating_dir = false

View File

@@ -224,9 +224,10 @@ const paste = (e) => {
}
.file_upload {
display: block;
display: inline-block;
text-align: left;
width: 100%;
max-width: 1000px;
margin: 6px 0 0 0;
padding: 0;
background: var(--body_color);