Skip to content

Commit 4e67c59

Browse files
authoredFeb 15, 2021
fix: declare duplicate theming guide (#923)
Fixes a 404 due to a guide not being declared. Fixes #21853.
1 parent 2272750 commit 4e67c59

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed
 

‎material.angular.io/src/app/shared/guide-items/guide-items.ts

+10-4
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ const GUIDES = [
2424
id: 'theming',
2525
name: 'Theming Angular Material',
2626
document: '/docs-content/guides/theming.html',
27-
overview: `Customize your application with Angular Material's theming system.`
27+
overview: 'Customize your application with Angular Material\'s theming system.'
2828
},
2929
{
3030
id: 'theming-your-components',
3131
name: 'Theming your own components',
3232
document: '/docs-content/guides/theming-your-components.html',
33-
overview: `Use Angular Material's theming system in your own custom components.`
33+
overview: 'Use Angular Material\'s theming system in your own custom components.'
3434
},
3535
{
3636
id: 'typography',
37-
name: `Customizing Typography`,
37+
name: 'Customizing Typography',
3838
document: '/docs-content/guides/typography.html',
3939
overview: 'Configure the typography settings for Angular Material components.'
4040
},
@@ -64,9 +64,15 @@ const GUIDES = [
6464
},
6565
{
6666
id: 'using-component-harnesses',
67-
name: `Testing with component harnesses`,
67+
name: 'Testing with component harnesses',
6868
document: '/docs-content/guides/using-component-harnesses.html',
6969
overview: 'Write tests with component harnesses for convenience and meaningful results.'
70+
},
71+
{
72+
id: 'duplicate-theming-styles',
73+
name: 'Duplicate theming styles',
74+
document: '/docs-content/guides/duplicate-theming-styles.html',
75+
overview: 'Learn about our new color mixins for Sass that avoid duplicating theming styles.'
7076
}
7177
];
7278

0 commit comments

Comments
 (0)
Please sign in to comment.