Skip to content

Commit dfcd80c

Browse files
author
Vikas Agarwal
committed
Asana Task#251570416879588, Add IBM Cognitive opt-in to Skill Picker upon account activation and preferences page
-- Fix for the issue where subscribed communities was visible on skill picker.
1 parent 198f9c5 commit dfcd80c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/skill-picker/skill-picker.controller.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import _ from 'lodash'
1111
function SkillPickerController($scope, CONSTANTS, ProfileService, $state, userProfile, featuredSkills, logger, toaster, MemberCertService, $q) {
1212
var vm = this
1313
vm.ASSET_PREFIX = CONSTANTS.ASSET_PREFIX
14-
vm.IOS_PROGRAM_ID = CONSTANTS.SWIFT_PROGRAM_ID
15-
vm.PREDIX_PROGRAM_ID = CONSTANTS.PREDIX_PROGRAM_ID
16-
vm.IBM_COGNITIVE_PROGRAM_ID = CONSTANTS.IBM_COGNITIVE_PROGRAM_ID
14+
vm.IOS_PROGRAM_ID = parseInt(CONSTANTS.SWIFT_PROGRAM_ID)
15+
vm.PREDIX_PROGRAM_ID = parseInt(CONSTANTS.PREDIX_PROGRAM_ID)
16+
vm.IBM_COGNITIVE_PROGRAM_ID = parseInt(CONSTANTS.IBM_COGNITIVE_PROGRAM_ID)
1717
vm.submitSkills = submitSkills
1818
vm.featuredSkills = featuredSkills
1919
vm.userId = userProfile.userId

0 commit comments

Comments
 (0)