From 8365bc8946b8fd3743f9e3b6e47395f7dc20d872 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Tue, 9 Mar 2021 14:15:47 +0200 Subject: [PATCH] refactor(docs-infra): fix code indentation in `ContributorListComponent`'s template (#41051) This commit fixes the indentation of the template of `ContributorListComponent` to make it more readable. PR Close #41051 --- .../contributor/contributor-list.component.ts | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/aio/src/app/custom-elements/contributor/contributor-list.component.ts b/aio/src/app/custom-elements/contributor/contributor-list.component.ts index fd0116fe97..a55f631f18 100644 --- a/aio/src/app/custom-elements/contributor/contributor-list.component.ts +++ b/aio/src/app/custom-elements/contributor/contributor-list.component.ts @@ -6,18 +6,19 @@ import { LocationService } from 'app/shared/location.service'; @Component({ selector: `aio-contributor-list`, template: ` -
-{{name}} -
-
-
- + -
` +
+
+ +
+
+ `, }) export class ContributorListComponent implements OnInit { private groups: ContributorGroup[];