diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/web-api/components/Action.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/web-api/components/Action.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/js/apps/web-api/components/Action.tsx b/server/sonar-web/src/main/js/apps/web-api/components/Action.tsx index daa069cbe3a..a625db9a2ec 100644 --- a/server/sonar-web/src/main/js/apps/web-api/components/Action.tsx +++ b/server/sonar-web/src/main/js/apps/web-api/components/Action.tsx @@ -17,17 +17,17 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ +import * as classNames from 'classnames'; import * as React from 'react'; -import LinkIcon from 'sonar-ui-common/components/icons/LinkIcon'; import { Link } from 'react-router'; -import * as classNames from 'classnames'; +import LinkIcon from 'sonar-ui-common/components/icons/LinkIcon'; import { translate, translateWithParameters } from 'sonar-ui-common/helpers/l10n'; -import Params from './Params'; -import ResponseExample from './ResponseExample'; +import { getActionKey, serializeQuery } from '../utils'; import ActionChangelog from './ActionChangelog'; import DeprecatedBadge from './DeprecatedBadge'; import InternalBadge from './InternalBadge'; -import { getActionKey, serializeQuery } from '../utils'; +import Params from './Params'; +import ResponseExample from './ResponseExample'; interface Props { action: T.WebApi.Action; |