Fix typos in component properties (#1560)

* Fix typo `fallbackThubnail` -> `fallbackThumbnail`

* Fix typo `showUdoNotificationBar` -> `showNotificationBar`

Update upload mis-spelled properties to 'showNotificationBar' since
showUndoNotificationBar is already a method on the drag area component

Refs #1559

* Fix test cases
This commit is contained in:
Will Abson
2017-01-28 14:52:23 +00:00
committed by Mario Romano
parent 09b98e7071
commit 5519f9fb00
9 changed files with 23 additions and 23 deletions

View File

@@ -8,7 +8,7 @@
[data]="data"
[actions]="contentActions"
[multiselect]="multiselect"
[fallbackThumbnail]="fallbackThubnail"
[fallbackThumbnail]="fallbackThumbnail"
(showRowContextMenu)="onShowRowContextMenu($event)"
(showRowActionsMenu)="onShowRowActionsMenu($event)"
(executeRowAction)="onExecuteRowAction($event)"

View File

@@ -54,7 +54,7 @@ export class DocumentListComponent implements OnInit, OnChanges, AfterContentIni
baseComponentPath = module.id.replace('/components/document-list.component.js', '');
@Input()
fallbackThubnail: string = this.baseComponentPath + '/assets/images/ft_ic_miscellaneous.svg';
fallbackThumbnail: string = this.baseComponentPath + '/assets/images/ft_ic_miscellaneous.svg';
@Input()
navigate: boolean = true;