Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

correctly specify stripes.config.js in config documentation #1606

Merged
merged 1 commit into from
Mar 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix typo in stripes.configs.js
  • Loading branch information
julianladisch committed Mar 5, 2025
commit b6e2beaf00e919af5df969a352c782956b1fb996
6 changes: 3 additions & 3 deletions src/components/Root/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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';
Expand All @@ -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';
Expand Down