Fixing issue with ids for selenium (#5859)
* Fixing issue with ids for selenium * removing comment
Этот коммит содержится в:
@@ -107,7 +107,7 @@ export default class SettingItemMax extends React.Component {
|
||||
{clientError}
|
||||
{submit}
|
||||
<a
|
||||
id={this.props.title + 'Cancel'}
|
||||
id={Utils.createSafeId(this.props.title.toString() + 'Cancel')}
|
||||
className='btn btn-sm'
|
||||
href='#'
|
||||
onClick={this.props.updateSection}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
// See License.txt for license information.
|
||||
|
||||
import {FormattedMessage} from 'react-intl';
|
||||
import * as Utils from 'utils/utils.jsx';
|
||||
|
||||
import React from 'react';
|
||||
|
||||
@@ -12,7 +13,7 @@ export default class SettingItemMin extends React.Component {
|
||||
editButton = (
|
||||
<li className='col-xs-12 col-sm-3 section-edit'>
|
||||
<a
|
||||
id={this.props.title}
|
||||
id={Utils.createSafeId(this.props.title.toString() + 'Edit')}
|
||||
className='theme'
|
||||
href='#'
|
||||
onClick={this.props.updateSection}
|
||||
@@ -35,7 +36,7 @@ export default class SettingItemMin extends React.Component {
|
||||
<li className='col-xs-12 col-sm-9 section-title'>{this.props.title}</li>
|
||||
{editButton}
|
||||
<li
|
||||
id={this.props.title + 'Desc'}
|
||||
id={Utils.createSafeId(this.props.title.toString() + 'Desc')}
|
||||
className='col-xs-12 section-describe'
|
||||
>
|
||||
{this.props.describe}
|
||||
|
||||
Ссылка в новой задаче
Block a user