From ce959724aff8e960edfb9e54eda2e5df21719eb1 Mon Sep 17 00:00:00 2001 From: MrTimscampi Date: Sun, 16 Feb 2020 02:34:40 +0100 Subject: [PATCH] Add photo album type indicator --- src/components/indicators/indicators.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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
'; }