Skip to content

Commit 08ad2c9

Browse files
authored
chore: fix table sticky column file name (#11717)
1 parent bb30888 commit 08ad2c9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/demo-app/table/table-demo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class TableDemo {
3030
'table-sorting',
3131
'table-expandable-rows',
3232
'table-sticky-header',
33-
'table-sticky-column',
33+
'table-sticky-columns',
3434
'table-sticky-footer',
3535
'table-sticky-complex',
3636
'table-sticky-complex-flex',

src/material-examples/table-sticky-columns/table-sticky-column-example.ts renamed to src/material-examples/table-sticky-columns/table-sticky-columns-example.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import {Component} from '@angular/core';
44
* @title Table with a sticky columns
55
*/
66
@Component({
7-
selector: 'table-sticky-column-example',
8-
styleUrls: ['table-sticky-column-example.css'],
9-
templateUrl: 'table-sticky-column-example.html',
7+
selector: 'table-sticky-columns-example',
8+
styleUrls: ['table-sticky-columns-example.css'],
9+
templateUrl: 'table-sticky-columns-example.html',
1010
})
11-
export class TableStickyColumnExample {
11+
export class TableStickyColumnsExample {
1212
displayedColumns =
1313
['name', 'position', 'weight', 'symbol', 'position', 'weight', 'symbol', 'star'];
1414
dataSource = ELEMENT_DATA;

0 commit comments

Comments
 (0)