Skip to content

Commit

Permalink
fix(grid): rename LyGridCol to LyGridItem
Browse files Browse the repository at this point in the history
  • Loading branch information
alyleui committed Sep 10, 2018
1 parent 2803457 commit 1a80a0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/lib/grid/grid.module.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { NgModule } from '@angular/core';
import { LyGrid, LyGridCol } from './grid';
import { LyGrid, LyGridItem } from './grid';

@NgModule({
exports: [LyGrid, LyGridCol],
declarations: [LyGrid, LyGridCol]
exports: [LyGrid, LyGridItem],
declarations: [LyGrid, LyGridItem]
})
export class LyGridModule { }
2 changes: 1 addition & 1 deletion src/lib/grid/grid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export class LyGrid {
@Directive({
selector: 'ly-grid[item]'
})
export class LyGridCol implements OnInit {
export class LyGridItem implements OnInit {
private _col: string | number;
private _colClass: string;

Expand Down

0 comments on commit 1a80a0a

Please sign in to comment.