diff options
Diffstat (limited to 'server/sonar-web/src/main/js/helpers/projectLinks.ts')
-rw-r--r-- | server/sonar-web/src/main/js/helpers/projectLinks.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/helpers/projectLinks.ts b/server/sonar-web/src/main/js/helpers/projectLinks.ts index cf567cdb4cd..30d9b6fa637 100644 --- a/server/sonar-web/src/main/js/helpers/projectLinks.ts +++ b/server/sonar-web/src/main/js/helpers/projectLinks.ts @@ -19,11 +19,12 @@ */ import { partition, sortBy } from 'lodash'; import { translate } from '../helpers/l10n'; +import { ProjectLink } from '../types/types'; const PROVIDED_TYPES = ['homepage', 'ci', 'issue', 'scm', 'scm_dev']; -type NameAndType = Pick<T.ProjectLink, 'name' | 'type'>; +type NameAndType = Pick<ProjectLink, 'name' | 'type'>; -export function isProvided(link: Pick<T.ProjectLink, 'type'>) { +export function isProvided(link: Pick<ProjectLink, 'type'>) { return PROVIDED_TYPES.includes(link.type); } |