File tree Expand file tree Collapse file tree
client/src/components/Upload Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,9 +76,7 @@ const queue = ref(createUploadQueue());
7676const selectedItemsForModal = ref <HDASummary []>([]);
7777
7878const counterNonRunning = computed (() => counterAnnounce .value + counterSuccess .value + counterError .value );
79- const creatingPairedType = computed (
80- () => props .isCollection && [" list:paired" , " paired" ].includes (collectionType .value ),
81- );
79+ const creatingPairedType = computed (() => props .isCollection && collectionType .value === " list:paired" );
8280const enableBuild = computed (
8381 () =>
8482 ! isRunning .value &&
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ export const AUTO_EXTENSION = {
1414} ;
1515export const COLLECTION_TYPES = [
1616 { id : "list" , text : "List" } ,
17- { id : "paired" , text : "Pair" } ,
1817 { id : "list:paired" , text : "List of Pairs" } ,
1918] ;
2019export const DEFAULT_DBKEY = "?" ;
You can’t perform that action at this time.
0 commit comments