Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 4f655ff

Browse files
authored
moved cognitive to top of list
1 parent 9ca6d96 commit 4f655ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/skill-picker/skill-picker.jade

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
.community(ng-repeat="(communityKey, community) in vm.communities", ng-class="{'community--disabled': !community.status}", ng-if="community.display")
1111
.community__details
1212
.community__icon(ng-class="{'community__icon--disabled': !community.status}")
13+
img(ng-if="communityKey == 'ibm_cognitive' && community.status", src=require("../../assets/images/ico-ibm_cognitive-community.svg"))
14+
img(ng-if="communityKey == 'ibm_cognitive' && !community.status", src=require("../../assets/images/ico-ibm_cognitive-community-grey.svg"))
1315
img(ng-if="communityKey == 'ios' && community.status", src=require("../../assets/images/ico-ios-community.svg"))
1416
img(ng-if="communityKey == 'ios' && !community.status", src=require("../../assets/images/ico-ios-community-grey.svg"))
1517
img(ng-if="communityKey == 'predix' && community.status", src=require("../../assets/images/ico-predix-community.svg"))
1618
img(ng-if="communityKey == 'predix' && !community.status", src=require("../../assets/images/ico-predix-community-grey.svg"))
17-
img(ng-if="communityKey == 'ibm_cognitive' && community.status", src=require("../../assets/images/ico-ibm_cognitive-community.svg"))
18-
img(ng-if="communityKey == 'ibm_cognitive' && !community.status", src=require("../../assets/images/ico-ibm_cognitive-community-grey.svg"))
1919

2020
.community__text
2121
span.community__title(class="{{!community.status && 'disabled'}}") {{community.displayName}}
2222
.community__description
23+
span(ng-if="communityKey == 'ibm_cognitive'") Cognitive Community
2324
span(ng-if="communityKey == 'ios'") Mobile app design and development for iOS, with Swift emphasis
2425
span(ng-if="communityKey == 'predix'") Design and development on GE’s platform for the Industrial Internet of Things
25-
span(ng-if="communityKey == 'ibm_cognitive'") Cognitive Community
2626

2727
onoff-switch(model="community.status", unique-id="'community-' + communityKey")
2828

0 commit comments

Comments
 (0)