Skip to content

Commit

Permalink
Fix for #457 Disable notes being added for new taxa
Browse files Browse the repository at this point in the history
The line in the autosuggest box that creates the "verbatim taxon" note has been disabled.
  • Loading branch information
FedorSteeman committed Feb 9, 2024
1 parent 8d15f09 commit 6f81416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MassDigitizer/autoSuggest_popup.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def captureSuggestion(self, keyStrokes, minimumCharacters=3):
# self.autoSuggestObject.name = values['txtInput']
# self.autoSuggestObject.fullName = f"{self.autoSuggestObject.name}".strip(' ')
self.autoSuggestObject.collectionId = self.collectionID
self.autoSuggestObject.notes = f" | Verbatim_taxon:{self.autoSuggestObject.fullName}"
#self.autoSuggestObject.notes = f" | Verbatim_taxon:{self.autoSuggestObject.fullName}"
self.autoSuggestObject.parentFullName = values['txtHiTax'].strip()
self.autoSuggestObject.familyName = values['txtHiTax'].strip()
self.autoSuggestObject.rankid = self.specimen.determineRank(self.autoSuggestObject.fullName)
Expand Down

0 comments on commit 6f81416

Please sign in to comment.