diff options
Diffstat (limited to 'server/sonar-web/src/main/js/components/icons-components/BranchIcon.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/components/icons-components/BranchIcon.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/icons-components/BranchIcon.tsx b/server/sonar-web/src/main/js/components/icons-components/BranchIcon.tsx index 95cb79bb6e5..7f7794e73c8 100644 --- a/server/sonar-web/src/main/js/components/icons-components/BranchIcon.tsx +++ b/server/sonar-web/src/main/js/components/icons-components/BranchIcon.tsx @@ -19,10 +19,10 @@ */ import * as React from 'react'; import { IconProps } from 'sonar-ui-common/components/icons/Icon'; -import ShortLivingBranchIcon from 'sonar-ui-common/components/icons/ShortLivingBranchIcon'; import LongLivingBranchIcon from 'sonar-ui-common/components/icons/LongLivingBranchIcon'; import PullRequestIcon from 'sonar-ui-common/components/icons/PullRequestIcon'; -import { isShortLivingBranch, isPullRequest } from '../../helpers/branches'; +import ShortLivingBranchIcon from 'sonar-ui-common/components/icons/ShortLivingBranchIcon'; +import { isPullRequest, isShortLivingBranch } from '../../helpers/branches'; interface Props extends IconProps { branchLike: T.BranchLike; |