diff --git a/src/components/indicators/indicators.js b/src/components/indicators/indicators.js index a8bd4c6200..c81ac6bf18 100644 --- a/src/components/indicators/indicators.js +++ b/src/components/indicators/indicators.js @@ -152,9 +152,12 @@ define(['datetime', 'itemHelper', 'css!./indicators.css', 'material-icons'], fun if (item.Type === 'Video') { return '
videocam
'; } - if (item.Type === 'Folder' || item.Type === 'PhotoAlbum') { + if (item.Type === 'Folder') { return '
folder
'; } + if (item.Type === 'PhotoAlbum') { + return '
'; + } if (item.Type === 'Photo') { return '
photo
'; }