diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/account')
4 files changed, 4 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/js/apps/account/notifications/GlobalNotifications.js b/server/sonar-web/src/main/js/apps/account/notifications/GlobalNotifications.js index bf116a08998..21b7c28f9d1 100644 --- a/server/sonar-web/src/main/js/apps/account/notifications/GlobalNotifications.js +++ b/server/sonar-web/src/main/js/apps/account/notifications/GlobalNotifications.js @@ -20,6 +20,7 @@ import React from 'react'; import { connect } from 'react-redux'; import NotificationsList from './NotificationsList'; +import { addNotification, removeNotification } from './actions'; import { translate } from '../../../helpers/l10n'; import { getGlobalNotifications, @@ -32,7 +33,6 @@ import { ChannelsState, TypesState } from '../../../store/notifications/duck'; */ -import { addNotification, removeNotification } from './actions'; /*:: type Props = { diff --git a/server/sonar-web/src/main/js/apps/account/notifications/Notifications.js b/server/sonar-web/src/main/js/apps/account/notifications/Notifications.js index 2116133816c..56148702a1d 100644 --- a/server/sonar-web/src/main/js/apps/account/notifications/Notifications.js +++ b/server/sonar-web/src/main/js/apps/account/notifications/Notifications.js @@ -23,8 +23,8 @@ import Helmet from 'react-helmet'; import { connect } from 'react-redux'; import GlobalNotifications from './GlobalNotifications'; import Projects from './Projects'; -import { translate } from '../../../helpers/l10n'; import { fetchNotifications } from './actions'; +import { translate } from '../../../helpers/l10n'; class Notifications extends React.PureComponent { /*:: props: { diff --git a/server/sonar-web/src/main/js/apps/account/notifications/ProjectNotifications.js b/server/sonar-web/src/main/js/apps/account/notifications/ProjectNotifications.js index 0dc2bbe2ec3..8fbf66c2d4c 100644 --- a/server/sonar-web/src/main/js/apps/account/notifications/ProjectNotifications.js +++ b/server/sonar-web/src/main/js/apps/account/notifications/ProjectNotifications.js @@ -21,6 +21,7 @@ import React from 'react'; import { connect } from 'react-redux'; import { Link } from 'react-router'; import NotificationsList from './NotificationsList'; +import { addNotification, removeNotification } from './actions'; import Organization from '../../../components/shared/Organization'; import { translate } from '../../../helpers/l10n'; import { @@ -34,7 +35,6 @@ import { ChannelsState, TypesState } from '../../../store/notifications/duck'; */ -import { addNotification, removeNotification } from './actions'; import { getProjectUrl } from '../../../helpers/urls'; class ProjectNotifications extends React.PureComponent { diff --git a/server/sonar-web/src/main/js/apps/account/organizations/UserOrganizations.tsx b/server/sonar-web/src/main/js/apps/account/organizations/UserOrganizations.tsx index f03c2e8132f..30895a4147e 100644 --- a/server/sonar-web/src/main/js/apps/account/organizations/UserOrganizations.tsx +++ b/server/sonar-web/src/main/js/apps/account/organizations/UserOrganizations.tsx @@ -22,8 +22,8 @@ import Helmet from 'react-helmet'; import { connect } from 'react-redux'; import OrganizationsList from './OrganizationsList'; import CreateOrganizationForm from './CreateOrganizationForm'; -import { translate } from '../../../helpers/l10n'; import { fetchIfAnyoneCanCreateOrganizations } from './actions'; +import { translate } from '../../../helpers/l10n'; import { getAppState, getMyOrganizations, getGlobalSettingValue } from '../../../store/rootReducer'; import { Organization } from '../../../app/types'; |