diff --git a/apps/client/src/widgets/type_widgets/options/password.tsx b/apps/client/src/widgets/type_widgets/options/password.tsx index b83ddeb98..ecd14c9b8 100644 --- a/apps/client/src/widgets/type_widgets/options/password.tsx +++ b/apps/client/src/widgets/type_widgets/options/password.tsx @@ -11,12 +11,12 @@ import OptionsSection from "./components/OptionsSection" import protected_session_holder from "../../../services/protected_session_holder" import { ChangePasswordResponse } from "@triliumnext/commons" import dialog from "../../../services/dialog" -import { reloadFrontendApp } from "../../../services/utils" export default function PasswordSettings() { return ( <> + ) } @@ -101,4 +101,14 @@ function ChangePassword() { ) +} + +function ProtectedSessionTimeout() { + return ( + + {t("password.protected_session_timeout_description")} +   + {t("password.wiki")} {t("password.for_more_info")} + + ) } \ No newline at end of file diff --git a/apps/client/src/widgets/type_widgets/options/password/protected_session_timeout.ts b/apps/client/src/widgets/type_widgets/options/password/protected_session_timeout.ts index 060a2e4eb..f1c044c42 100644 --- a/apps/client/src/widgets/type_widgets/options/password/protected_session_timeout.ts +++ b/apps/client/src/widgets/type_widgets/options/password/protected_session_timeout.ts @@ -1,12 +1,9 @@ -import { t } from "../../../../services/i18n.js"; import TimeSelector from "../time_selector.js"; const TPL = /*html*/`
-

${t("password.protected_session_timeout")}

-

- ${t("password.protected_session_timeout_description")} ${t("password.wiki")} ${t("password.for_more_info")} +

`;