diff --git a/.circleci/config.yml b/.circleci/config.yml index bbaa26dcc4..6645a7ef0a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -175,6 +175,7 @@ workflows: branches: only: - develop-from-master-23may + - hot-fixes-4 # This is alternate dev env for parallel testing - "build-test": context : org-global @@ -189,7 +190,6 @@ workflows: filters: branches: only: - - hot-fixes-2 - develop - general-features - develop-from-master-23may diff --git a/src/shared/components/Settings/Profile/Skills/index.jsx b/src/shared/components/Settings/Profile/Skills/index.jsx index 5b074890fa..a175fd0645 100644 --- a/src/shared/components/Settings/Profile/Skills/index.jsx +++ b/src/shared/components/Settings/Profile/Skills/index.jsx @@ -20,6 +20,7 @@ import ConsentComponent from 'components/Settings/ConsentComponent'; import DevFallbackIcon from 'assets/images/profile/skills/id-develop.svg'; import DesignFallbackIcon from 'assets/images/profile/skills/id-design.svg'; import DataFallbackIcon from 'assets/images/profile/skills/id-data.svg'; +import VerifiedBadgeIcon from 'assets/images/verified-skill-badge.svg'; import { isomorphy } from 'topcoder-react-utils'; import './styles.scss'; @@ -303,6 +304,7 @@ export default class Skills extends ConsentComponent { skill.id === arraySkill[i].tagId )); if (result && result.length > 0) { + result[0].sources = arraySkill[i].sources; filterUserSkills.push(result[0]); if (_.some(result[0].categories, category => category.toLowerCase() === 'design')) { design.push(result[0].name); @@ -505,10 +507,13 @@ export default class Skills extends ConsentComponent {
{ imageExist(`id-${skill.id}.svg`) ? getImage(`id-${skill.id}.svg`) :