diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2025-05-14 19:01:43 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2025-05-14 17:51:12 +0000 |
commit | 006d4ee95234cc3fcc20d8b7d68d1e379833734c (patch) | |
tree | 9c652b995f9626b6f4f98965ba6b3508c29d8b12 | |
parent | c7a50c708d5da3f4f8e05dc651a24cb65757f725 (diff) | |
download | nextcloud-server-006d4ee95234cc3fcc20d8b7d68d1e379833734c.tar.gz nextcloud-server-006d4ee95234cc3fcc20d8b7d68d1e379833734c.zip |
fix(files): hide mime column by default
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
-rw-r--r-- | apps/files/lib/Service/UserConfig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/lib/Service/UserConfig.php b/apps/files/lib/Service/UserConfig.php index 00aaa6b7ccb..a2f2f1c1d14 100644 --- a/apps/files/lib/Service/UserConfig.php +++ b/apps/files/lib/Service/UserConfig.php @@ -57,7 +57,7 @@ class UserConfig { [ // Whether to show the mime column or not 'key' => 'show_mime_column', - 'default' => true, + 'default' => false, 'allowed' => [true, false], ] ]; |