From b6e2beaf00e919af5df969a352c782956b1fb996 Mon Sep 17 00:00:00 2001 From: Julian Ladisch Date: Wed, 5 Mar 2025 14:53:51 +0100 Subject: [PATCH] Fix typo in stripes.configs.js --- src/components/Root/constants.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Root/constants.js b/src/components/Root/constants.js index a4cb30681..2ed6c6cc0 100644 --- a/src/components/Root/constants.js +++ b/src/components/Root/constants.js @@ -21,7 +21,7 @@ export const RTR_FLS_TIMEOUT_EVENT = '@folio/stripes/core::RTRFLSTimeout'; * user is forcibly logged out. This interval describes how much warning they * get before the session ends. * - * overridden in stripes.configs.js::config.rtr.fixedLengthSessionWarningTTL + * overridden in stripes.config.js::config.rtr.fixedLengthSessionWarningTTL * value must be a string parsable by ms() */ export const RTR_FLS_WARNING_TTL = '1m'; @@ -54,7 +54,7 @@ export const RTR_ACTIVITY_EVENTS = ['keydown', 'mousedown']; * but the first action that makes and API request (which will fail with an * RTR error) causes the session to end. * - * overridden in stripes.configs.js::config.rtr.idleSessionTTL + * overridden in stripes.config.js::config.rtr.idleSessionTTL * value must be a string parsable by ms() */ export const RTR_IDLE_SESSION_TTL = '60m'; @@ -67,7 +67,7 @@ export const RTR_IDLE_SESSION_TTL = '60m'; * then the modal will be displayed after 59 minutes of inactivity and * be displayed for one minute. * - * overridden in stripes.configs.js::config.rtr.idleModalTTL + * overridden in stripes.config.js::config.rtr.idleModalTTL * value must be a string parsable by ms() */ export const RTR_IDLE_MODAL_TTL = '1m';