From e063eb9ac13ed54bdb247244cd8d773fad91139e Mon Sep 17 00:00:00 2001 From: dousha Date: Sat, 8 Feb 2025 15:21:39 +0800 Subject: [PATCH] Fix the password box not being removed after entering protected mode (#1078) --- src/public/app/widgets/type_widgets/protected_session.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/public/app/widgets/type_widgets/protected_session.js b/src/public/app/widgets/type_widgets/protected_session.js index a8726de745..9f579acf9f 100644 --- a/src/public/app/widgets/type_widgets/protected_session.js +++ b/src/public/app/widgets/type_widgets/protected_session.js @@ -48,4 +48,8 @@ export default class ProtectedSessionTypeWidget extends TypeWidget { super.doRender(); } + + async doRefresh(note) { + // do nothing + } }