Different 'name' value for system console LHS "Email" section + route name update (#5917)

* Different 'name' value for system console LHS "Email" section

Under Testing
-This is to create a unique ID for the Selenium UI Automiation

* Update the system console route because of the name change

for unique selenium ID

* Update admin_sidebar.jsx

* Update route_admin_console.jsx
Этот коммит содержится в:
doh5
2017-04-03 21:16:57 +09:00
коммит произвёл Joram Wilander
родитель 88b8df3146
Коммит 8e70e40c30
2 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@@ -389,7 +389,7 @@ export default class AdminSidebar extends React.Component {
}
>
<AdminSidebarSection
name='email'
name='authentication_email'
title={
<FormattedMessage
id='admin.sidebar.email'
@@ -469,7 +469,7 @@ export default class AdminSidebar extends React.Component {
}
>
<AdminSidebarSection
name='email'
name='notifications_email'
title={
<FormattedMessage
id='admin.sidebar.email'

Просмотреть файл

@@ -85,9 +85,9 @@ export default (
/>
</Route>
<Route path='authentication'>
<IndexRedirect to='email'/>
<IndexRedirect to='authentication_email'/>
<Route
path='email'
path='authentication_email'
component={EmailAuthenticationSettings}
/>
<Route
@@ -135,9 +135,9 @@ export default (
/>
</Route>
<Route path='notifications'>
<IndexRedirect to='email'/>
<IndexRedirect to='notifications_email'/>
<Route
path='email'
path='notifications_email'
component={EmailSettings}
/>
<Route