mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
refactor(recent-files): remove user config from frontend files
Signed-off-by: Cristian Scheid <cristianscheid@gmail.com>
This commit is contained in:
parent
7c03d21ef2
commit
e804544083
2 changed files with 1 additions and 3 deletions
|
|
@ -21,7 +21,6 @@ const initialUserConfig = loadState<UserConfig>('files', 'config', {
|
|||
show_mime_column: true,
|
||||
sort_favorites_first: true,
|
||||
sort_folders_first: true,
|
||||
recent_files_limit: 100,
|
||||
|
||||
show_dialog_deletion: false,
|
||||
show_dialog_file_extension: true,
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ export interface PathOptions {
|
|||
|
||||
// User config store
|
||||
export interface UserConfig {
|
||||
[key: string]: boolean | string | number | undefined
|
||||
[key: string]: boolean | string | undefined
|
||||
|
||||
crop_image_previews: boolean
|
||||
default_view: 'files' | 'personal'
|
||||
|
|
@ -58,7 +58,6 @@ export interface UserConfig {
|
|||
grid_view: boolean
|
||||
sort_favorites_first: boolean
|
||||
sort_folders_first: boolean
|
||||
recent_files_limit: number
|
||||
|
||||
show_files_extensions: boolean
|
||||
show_hidden: boolean
|
||||
|
|
|
|||
Loading…
Reference in a new issue