[no-issue] downgrade scss bundle and some other minor fix (#2824)

* downgrade scss bundle and some other minor fix

* 2.0.9

* remove chrome in travis conf

* execute different configuration
This commit is contained in:
Eugenio Romano
2018-01-12 13:23:17 +00:00
committed by GitHub
parent d5b17c14e2
commit f6cf036769
5 changed files with 23 additions and 41 deletions

View File

@@ -125,8 +125,8 @@ export class ThumbnailService {
* @param document Node to get URL for.
* @returns {string} URL address.
*/
public getDocumentThumbnailUrl(document: any): string {
let thumbnail = this.contentService.getDocumentThumbnailUrl(document);
public getDocumentThumbnailUrl(node: any): string {
let thumbnail = this.contentService.getDocumentThumbnailUrl(node);
return thumbnail || this.DEFAULT_ICON;
}