diff options
author | Viktor Vorona <viktor.vorona@sonarsource.com> | 2024-04-24 14:52:52 +0200 |
---|---|---|
committer | Matteo Mara <matteo.mara@sonarsource.com> | 2024-04-30 10:59:03 +0200 |
commit | cdeb0429be4e9e4c1590e2333bd780e5fa9d1a65 (patch) | |
tree | f4fad82d3127882f1f64e52469eb9faddd8601db /server/sonar-web/src/main/js/apps/issues/utils.ts | |
parent | 57b2e33c8c321d3297631de46e1fda374e3b17d8 (diff) | |
download | sonarqube-cdeb0429be4e9e4c1590e2333bd780e5fa9d1a65.tar.gz sonarqube-cdeb0429be4e9e4c1590e2333bd780e5fa9d1a65.zip |
SONAR-22049 Align getComponentIssuesUrl and getComponentSecurityHotspotsUrl
Diffstat (limited to 'server/sonar-web/src/main/js/apps/issues/utils.ts')
-rw-r--r-- | server/sonar-web/src/main/js/apps/issues/utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/utils.ts b/server/sonar-web/src/main/js/apps/issues/utils.ts index 1e0da76fa23..863b73c80fe 100644 --- a/server/sonar-web/src/main/js/apps/issues/utils.ts +++ b/server/sonar-web/src/main/js/apps/issues/utils.ts @@ -18,6 +18,7 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import { intersection, isArray, uniq } from 'lodash'; +import { formatMeasure } from '~sonar-aligned/helpers/measures'; import { getUsers } from '../../api/users'; import { DEFAULT_ISSUES_QUERY } from '../../components/shared/utils'; import { @@ -34,7 +35,6 @@ import { } from '../../helpers/query'; import { get, save } from '../../helpers/storage'; import { isDefined } from '../../helpers/types'; -import { formatMeasure } from '../../sonar-aligned/helpers/measures'; import { CleanCodeAttributeCategory, SoftwareImpactSeverity, |