diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/security-hotspots/components/assignee/Assignee.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/security-hotspots/components/assignee/Assignee.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/security-hotspots/components/assignee/Assignee.tsx b/server/sonar-web/src/main/js/apps/security-hotspots/components/assignee/Assignee.tsx index 19ba3ae0ef8..ba12ef0c8e2 100644 --- a/server/sonar-web/src/main/js/apps/security-hotspots/components/assignee/Assignee.tsx +++ b/server/sonar-web/src/main/js/apps/security-hotspots/components/assignee/Assignee.tsx @@ -18,11 +18,11 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import * as React from 'react'; -import { translate, translateWithParameters } from 'sonar-ui-common/helpers/l10n'; import { assignSecurityHotspot } from '../../../../api/security-hotspots'; import addGlobalSuccessMessage from '../../../../app/utils/addGlobalSuccessMessage'; import { withCurrentUser } from '../../../../components/hoc/withCurrentUser'; import { isLoggedIn } from '../../../../helpers/users'; +import { translate, translateWithParameters } from '../../../../sonar-ui-common/helpers/l10n'; import { Hotspot, HotspotStatus } from '../../../../types/security-hotspots'; import AssigneeRenderer from './AssigneeRenderer'; |