diff --git a/src/display/editor/tools.js b/src/display/editor/tools.js index 331d9ab43b440..11055799d0f5a 100644 --- a/src/display/editor/tools.js +++ b/src/display/editor/tools.js @@ -793,7 +793,7 @@ class AnnotationEditorUIManager { const textInputChecker = (_self, { target: el }) => { if (el instanceof HTMLInputElement) { const { type } = el; - return type !== "text" && type !== "number"; + return type !== "text" && type !== "number" && type !== "password"; } return true; };