Add IDs for Account Settings > Notifications (#5788)
* Add IDs for desktop notification settings * Add IDs for email notifications * Add IDs to user notification settings * Add close button ID
Этот коммит содержится в:
коммит произвёл
Joram Wilander
родитель
b7a128ec1c
Коммит
05e3dc9f2a
@@ -113,6 +113,7 @@ export default class EmailNotificationSetting extends React.Component {
|
||||
<div className='radio'>
|
||||
<label>
|
||||
<input
|
||||
id='emailNotificationMinutes'
|
||||
type='radio'
|
||||
name='emailNotifications'
|
||||
checked={this.props.enableEmail && this.state.emailInterval === Preferences.INTERVAL_FIFTEEN_MINUTES}
|
||||
@@ -128,6 +129,7 @@ export default class EmailNotificationSetting extends React.Component {
|
||||
<div className='radio'>
|
||||
<label>
|
||||
<input
|
||||
id='emailNotificationHour'
|
||||
type='radio'
|
||||
name='emailNotifications'
|
||||
checked={this.props.enableEmail && this.state.emailInterval === Preferences.INTERVAL_HOUR}
|
||||
@@ -164,6 +166,7 @@ export default class EmailNotificationSetting extends React.Component {
|
||||
<div className='radio'>
|
||||
<label>
|
||||
<input
|
||||
id='emailNotificationImmediately'
|
||||
type='radio'
|
||||
name='emailNotifications'
|
||||
checked={this.props.enableEmail && this.state.emailInterval === Preferences.INTERVAL_IMMEDIATE}
|
||||
@@ -179,6 +182,7 @@ export default class EmailNotificationSetting extends React.Component {
|
||||
<div className='radio'>
|
||||
<label>
|
||||
<input
|
||||
id='emailNotificationNever'
|
||||
type='radio'
|
||||
name='emailNotifications'
|
||||
checked={!this.props.enableEmail}
|
||||
|
||||
Ссылка в новой задаче
Block a user