-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(openchallenges): implement UI suggestions from Stockard (#2952)
- Loading branch information
Showing
9 changed files
with
93 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// Temporarily add padding to button until more stats are implemented | ||
.action-btn { | ||
padding: 28px 3px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 14 additions & 14 deletions
28
libs/openchallenges/ui/src/lib/person-card/mock-challenge-organizers.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
import { ChallengeOrganizer } from './challenge-organizer'; | ||
|
||
export const MOCK_CHALLENGE_ORGANIZERS: ChallengeOrganizer[] = [ | ||
{ | ||
id: '', | ||
challengeId: '1', | ||
login: 'awesome-lead', | ||
name: 'Awesome Lead', | ||
roles: ['ChallengeLead'], | ||
}, | ||
{ | ||
id: '', | ||
challengeId: '2', | ||
name: 'Awesome Engineer', | ||
login: 'awesome-engineer', | ||
roles: ['InfrastructureLead'], | ||
}, | ||
// { | ||
// id: '', | ||
// challengeId: '1', | ||
// login: 'awesome-lead', | ||
// name: 'Awesome Lead', | ||
// roles: ['ChallengeLead'], | ||
// }, | ||
// { | ||
// id: '', | ||
// challengeId: '2', | ||
// name: 'Awesome Engineer', | ||
// login: 'awesome-engineer', | ||
// roles: ['InfrastructureLead'], | ||
// }, | ||
]; |
54 changes: 27 additions & 27 deletions
54
libs/openchallenges/ui/src/lib/person-card/mock-org-members.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
import { OrgMembership } from './org-membership'; | ||
|
||
export const MOCK_ORG_MEMBERS: OrgMembership[] = [ | ||
{ | ||
id: '', | ||
name: 'Awesome Admin', | ||
state: 'active', | ||
roles: ['admin'], | ||
avatarUrl: '', | ||
organizationId: '', | ||
userId: '', | ||
}, | ||
{ | ||
id: '', | ||
name: 'Awesome Member1', | ||
state: 'active', | ||
roles: ['member'], | ||
avatarUrl: '', | ||
organizationId: '', | ||
userId: '', | ||
}, | ||
{ | ||
id: '', | ||
name: 'Awesome Member2', | ||
state: 'active', | ||
roles: ['member'], | ||
avatarUrl: '', | ||
organizationId: '', | ||
userId: '', | ||
}, | ||
// { | ||
// id: '', | ||
// name: 'Awesome Admin', | ||
// state: 'active', | ||
// roles: ['admin'], | ||
// avatarUrl: '', | ||
// organizationId: '', | ||
// userId: '', | ||
// }, | ||
// { | ||
// id: '', | ||
// name: 'Awesome Member1', | ||
// state: 'active', | ||
// roles: ['member'], | ||
// avatarUrl: '', | ||
// organizationId: '', | ||
// userId: '', | ||
// }, | ||
// { | ||
// id: '', | ||
// name: 'Awesome Member2', | ||
// state: 'active', | ||
// roles: ['member'], | ||
// avatarUrl: '', | ||
// organizationId: '', | ||
// userId: '', | ||
// }, | ||
]; |