diff --git a/front/src/ui/modals/Upload.vue b/front/src/ui/modals/Upload.vue index a8df89603..ccc4a90f8 100644 --- a/front/src/ui/modals/Upload.vue +++ b/front/src/ui/modals/Upload.vue @@ -10,7 +10,7 @@ import Layout from '~/components/ui/Layout.vue' import Spacer from '~/components/ui/Spacer.vue' import Card from '~/components/ui/Card.vue' -import type { Channel, PrivacyLevel } from '~/types' +import type { Channel, LibraryPrivacyLevelEnum } from '~/types' import ChannelUpload from '~/components/channels/UploadForm.vue' import LibraryUpload from '~/components/library/FileUpload.vue' @@ -65,7 +65,7 @@ watch(state, ({ page }, oldValue) => { // Step 1.1 // Load the library for the chosen privacy level -const privacyLevel = ref('me') +const privacyLevel = ref('me') const modalTitle = computed(() => ({ selectDestination: 'Upload', uploadFiles: 'Select files for upload', uploadsInProgress: 'Uploading...' } diff --git a/front/src/views/admin/library/LibraryDetail.vue b/front/src/views/admin/library/LibraryDetail.vue index 004ae6a6d..93ed51892 100644 --- a/front/src/views/admin/library/LibraryDetail.vue +++ b/front/src/views/admin/library/LibraryDetail.vue @@ -1,5 +1,5 @@