mirror of
https://github.com/sct/overseerr.git
synced 2025-09-26 20:12:33 +02:00
refactor(ui): improved alerts for services settings & removed alert titles (#1280)
* refactor(ui): improved alerts for services settings & removed alert titles * fix(ui): set styling of alert links to be consistent w/ others * fix(ui): clarify appropriate 4K setting when user has not configured a default non-4K server * fix: remove unused var/eslint-disable & correct string
This commit is contained in:
@@ -58,7 +58,6 @@ const messages = defineMessages({
|
||||
usercreatedsuccess: 'User created successfully!',
|
||||
email: 'Email Address',
|
||||
password: 'Password',
|
||||
passwordinfo: 'Password Information',
|
||||
passwordinfodescription:
|
||||
'Email notifications need to be configured and enabled in order to automatically generate passwords.',
|
||||
autogeneratepassword: 'Automatically generate password',
|
||||
@@ -338,9 +337,9 @@ const UserList: React.FC = () => {
|
||||
okButtonType="primary"
|
||||
onCancel={() => setCreateModal({ isOpen: false })}
|
||||
>
|
||||
<Alert title={intl.formatMessage(messages.passwordinfo)}>
|
||||
{intl.formatMessage(messages.passwordinfodescription)}
|
||||
</Alert>
|
||||
<Alert
|
||||
title={intl.formatMessage(messages.passwordinfodescription)}
|
||||
/>
|
||||
<Form className="section">
|
||||
<div className="form-row">
|
||||
<label htmlFor="email" className="text-label">
|
||||
|
Reference in New Issue
Block a user