docs: change the order of groups in contributors page (#29553)

Put "Collaborators" before "GDE", since they are semantically closer to
the core team.

PR Close #29553
This commit is contained in:
George Kalpakas 2019-03-29 14:25:51 +02:00 committed by Jason Aden
parent 4b2407a4db
commit 799a5a4915
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import { Contributor, ContributorGroup } from './contributors.model';
import { CONTENT_URL_PREFIX } from 'app/documents/document.service';
const contributorsPath = CONTENT_URL_PREFIX + 'contributors.json';
const knownGroups = ['Angular', 'GDE'];
const knownGroups = ['Angular', 'Collaborators', 'GDE'];
@Injectable()
export class ContributorService {