diff --git a/frontend/src/css/_share.css b/frontend/src/css/_share.css
index 04034a32..f6a19a5f 100644
--- a/frontend/src/css/_share.css
+++ b/frontend/src/css/_share.css
@@ -19,7 +19,6 @@
color: var(--textPrimary);
border-radius: 0.2em;
margin: 5px;
- overflow: hidden;
}
.share__box__header {
diff --git a/frontend/src/stores/auth.ts b/frontend/src/stores/auth.ts
index 2f5f653a..40c97c5e 100644
--- a/frontend/src/stores/auth.ts
+++ b/frontend/src/stores/auth.ts
@@ -16,7 +16,10 @@ export const useAuthStore = defineStore("auth", () => {
perm: { create: false },
});
- const shareConfig = ref({ sortBy: "name", asc: false });
+ const shareConfig = useStorage("share-config", {
+ sortBy: "name",
+ asc: false,
+ });
const isLoggedIn = computed(() => registeredUser.value !== null);
const user = computed({
get: () =>
diff --git a/frontend/src/views/Files.vue b/frontend/src/views/Files.vue
index 2e82fc6b..aa5edd87 100644
--- a/frontend/src/views/Files.vue
+++ b/frontend/src/views/Files.vue
@@ -8,7 +8,11 @@