diff --git a/client/src/components/Collections/ListCollectionCreator.vue b/client/src/components/Collections/ListCollectionCreator.vue index ca9e25aec416..d33f98927d83 100644 --- a/client/src/components/Collections/ListCollectionCreator.vue +++ b/client/src/components/Collections/ListCollectionCreator.vue @@ -414,6 +414,7 @@ function renameElement(element: any, name: string) { :extensions="extensions" collection-type="list" :no-items="props.initialElements.length == 0 && !props.fromSelection" + :show-upload="!fromSelection" @add-uploaded-files="addUploadedFiles" @on-update-datatype-toggle="changeDatatypeFilter" @onUpdateHideSourceItems="onUpdateHideSourceItems" diff --git a/client/src/components/Collections/PairCollectionCreator.vue b/client/src/components/Collections/PairCollectionCreator.vue index 1d3e5922f315..c00c2c0f9b1e 100644 --- a/client/src/components/Collections/PairCollectionCreator.vue +++ b/client/src/components/Collections/PairCollectionCreator.vue @@ -376,6 +376,7 @@ function _naiveStartingAndEndingLCS(s1: string, s2: string) { :extensions-toggle="removeExtensions" collection-type="paired" :no-items="props.initialElements.length == 0 && !props.fromSelection" + :show-upload="!fromSelection" @add-uploaded-files="addUploadedFiles" @onUpdateHideSourceItems="onUpdateHideSourceItems" @clicked-create="clickedCreate" diff --git a/client/src/components/Collections/PairedListCollectionCreator.vue b/client/src/components/Collections/PairedListCollectionCreator.vue index 620252f7c281..1f831e66a79c 100644 --- a/client/src/components/Collections/PairedListCollectionCreator.vue +++ b/client/src/components/Collections/PairedListCollectionCreator.vue @@ -881,6 +881,7 @@ function _naiveStartingAndEndingLCS(s1: string, s2: string) { :extensions="extensions" collection-type="list:paired" :no-items="props.initialElements.length == 0 && !props.fromSelection" + :show-upload="!fromSelection" @add-uploaded-files="addUploadedFiles" @onUpdateHideSourceItems="hideSourceItems = $event" @clicked-create="clickedCreate" diff --git a/client/src/components/Collections/common/CollectionCreator.vue b/client/src/components/Collections/common/CollectionCreator.vue index c60e80099fd2..6947a1d592fb 100644 --- a/client/src/components/Collections/common/CollectionCreator.vue +++ b/client/src/components/Collections/common/CollectionCreator.vue @@ -1,7 +1,7 @@