mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
fix(ui): add clarification to user settings (#1644)
This commit is contained in:
@@ -19,11 +19,14 @@ const messages = defineMessages({
|
||||
toastSettingsSuccess: 'User settings saved successfully!',
|
||||
toastSettingsFailure: 'Something went wrong while saving settings.',
|
||||
localLogin: 'Enable Local Sign-In',
|
||||
newPlexLogin: 'Enable New Plex User Sign-In',
|
||||
localLoginTip:
|
||||
'Allow users to sign in using their email address and password, instead of Plex OAuth',
|
||||
newPlexLogin: 'Enable New Plex Sign-In',
|
||||
newPlexLoginTip: 'Allow Plex users to sign in without first being imported',
|
||||
movieRequestLimitLabel: 'Global Movie Request Limit',
|
||||
tvRequestLimitLabel: 'Global Series Request Limit',
|
||||
defaultPermissions: 'Default Permissions',
|
||||
defaultPermissionsTip: 'Initial permissions assigned to new users',
|
||||
});
|
||||
|
||||
const SettingsUsers: React.FC = () => {
|
||||
@@ -102,6 +105,9 @@ const SettingsUsers: React.FC = () => {
|
||||
<div className="form-row">
|
||||
<label htmlFor="localLogin" className="checkbox-label">
|
||||
{intl.formatMessage(messages.localLogin)}
|
||||
<span className="label-tip">
|
||||
{intl.formatMessage(messages.localLoginTip)}
|
||||
</span>
|
||||
</label>
|
||||
<div className="form-input">
|
||||
<Field
|
||||
@@ -170,6 +176,9 @@ const SettingsUsers: React.FC = () => {
|
||||
<div className="form-row">
|
||||
<span id="group-label" className="group-label">
|
||||
{intl.formatMessage(messages.defaultPermissions)}
|
||||
<span className="label-tip">
|
||||
{intl.formatMessage(messages.defaultPermissionsTip)}
|
||||
</span>
|
||||
</span>
|
||||
<div className="form-input">
|
||||
<div className="max-w-lg">
|
||||
|
||||
Reference in New Issue
Block a user