Fix text annotation dragging error
This commit is contained in:
parent
fed4749a46
commit
c62ed29de9
1 changed files with 1 additions and 1 deletions
|
@ -1512,7 +1512,7 @@ class EditorInstanceUtilities {
|
|||
if (['highlight', 'underline'].includes(annotation.type)) {
|
||||
template = Zotero.Prefs.get('annotations.noteTemplates.highlight');
|
||||
}
|
||||
else if (annotation.type === 'note') {
|
||||
else if (['note', 'text'].includes(annotation.type)) {
|
||||
template = Zotero.Prefs.get('annotations.noteTemplates.note');
|
||||
}
|
||||
else if (annotation.type === 'image') {
|
||||
|
|
Loading…
Add table
Reference in a new issue