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

Commit ce26757

Browse files
author
Parth Shah
committed
Merge branch 'dev' into release/v1.0.2
2 parents 3d9ecd6 + 923f550 commit ce26757

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

app/services/profile.service.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@
103103
'rating': subTrack.rank.rating || 0,
104104
'wins': subTrack.wins
105105
};
106+
}).filter(function(subTrack) {
107+
return !(subTrack.subTrack == 'COPILOT_POSTING' && subTrack.track == 'DEVELOP');
106108
});
107109
}
108110
// show # of wins for design

app/settings/edit-profile/edit-profile.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
.bio
3939
.form-label short bio
4040
span(style="float:right;") {{vm.userData.description.length || 0}}/144
41-
textarea.form-field(name="description", ng-model="vm.userData.description" ng-maxlength="144")
41+
textarea.form-field(name="description", ng-model="vm.userData.description", maxlength="144")
4242

4343
.settings-section.tracks
4444
.section-info

0 commit comments

Comments
 (0)