From 6ef7ca151ecd602ca8e9cea21743a895a81e89ba Mon Sep 17 00:00:00 2001 From: Wouter Admiraal Date: Tue, 17 Aug 2021 15:50:55 +0200 Subject: SONAR-15297 Move sonar-ui-common code to sonar-web --- server/sonar-web/src/main/js/components/shared/SeverityHelper.tsx | 4 ++-- server/sonar-web/src/main/js/components/shared/StatusHelper.tsx | 4 ++-- server/sonar-web/src/main/js/components/shared/TypeHelper.tsx | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'server/sonar-web/src/main/js/components/shared') diff --git a/server/sonar-web/src/main/js/components/shared/SeverityHelper.tsx b/server/sonar-web/src/main/js/components/shared/SeverityHelper.tsx index 3fbcfaba327..222222308c2 100644 --- a/server/sonar-web/src/main/js/components/shared/SeverityHelper.tsx +++ b/server/sonar-web/src/main/js/components/shared/SeverityHelper.tsx @@ -18,8 +18,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import * as React from 'react'; -import SeverityIcon from 'sonar-ui-common/components/icons/SeverityIcon'; -import { translate } from 'sonar-ui-common/helpers/l10n'; +import SeverityIcon from '../../sonar-ui-common/components/icons/SeverityIcon'; +import { translate } from '../../sonar-ui-common/helpers/l10n'; interface Props { className?: string; diff --git a/server/sonar-web/src/main/js/components/shared/StatusHelper.tsx b/server/sonar-web/src/main/js/components/shared/StatusHelper.tsx index 7c4d972c25c..bc9de1dd8a0 100644 --- a/server/sonar-web/src/main/js/components/shared/StatusHelper.tsx +++ b/server/sonar-web/src/main/js/components/shared/StatusHelper.tsx @@ -18,8 +18,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import * as React from 'react'; -import StatusIcon from 'sonar-ui-common/components/icons/StatusIcon'; -import { translate } from 'sonar-ui-common/helpers/l10n'; +import StatusIcon from '../../sonar-ui-common/components/icons/StatusIcon'; +import { translate } from '../../sonar-ui-common/helpers/l10n'; interface Props { className?: string; diff --git a/server/sonar-web/src/main/js/components/shared/TypeHelper.tsx b/server/sonar-web/src/main/js/components/shared/TypeHelper.tsx index 02aab6b4ed1..18ac7cc516f 100644 --- a/server/sonar-web/src/main/js/components/shared/TypeHelper.tsx +++ b/server/sonar-web/src/main/js/components/shared/TypeHelper.tsx @@ -18,8 +18,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import * as React from 'react'; -import IssueTypeIcon from 'sonar-ui-common/components/icons/IssueTypeIcon'; -import { translate } from 'sonar-ui-common/helpers/l10n'; +import IssueTypeIcon from '../../sonar-ui-common/components/icons/IssueTypeIcon'; +import { translate } from '../../sonar-ui-common/helpers/l10n'; interface Props { className?: string; -- cgit v1.2.3