Skip to content

Commit 6922b50

Browse files
committed
Don't look for dups for unknown descriptions
Refs #2841
1 parent 2d8a8e0 commit 6922b50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

root/static/js/canto-modules.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4172,7 +4172,7 @@ var alleleEditDialogCtrl =
41724172
const desc = allele.description;
41734173
const alleleType = allele.type;
41744174
if (alleleType != "deletion" && alleleType != "disruption" &&
4175-
alleleType != "wild type" &&
4175+
alleleType != "wild type" && alleleType != "unknown" &&
41764176
!$scope.data.existingDescriptions[desc]) {
41774177
$scope.data.existingDescriptions[desc] = allele;
41784178
}

0 commit comments

Comments
 (0)