File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
client/src/components/Collections/common Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export function usePairingSummary<T extends HasName>(props: PropsWithCollectionT
1717 const numMatchedText = `Auto-matched ${ summary . pairs . length } pair(s) of datasets from target datasets.` ;
1818 const numUnmatched = summary . unpaired . length ;
1919 let numUnmatchedText = "" ;
20- if ( numUnmatched > 0 && props . collectionType . endsWith ( "paired" ) ) {
20+ if ( numUnmatched > 0 && props . collectionType . endsWith ( ": paired" ) ) {
2121 numUnmatchedText = `${ numUnmatched } dataset(s) were not paired and will not be included in the resulting list of pairs.` ;
2222 } else if ( numUnmatched > 0 ) {
2323 numUnmatchedText = `${ numUnmatched } dataset(s) were not paired and will be included in the resulting list as unpaired datasets.` ;
You can’t perform that action at this time.
0 commit comments