From bfa2497dd55004eaa485b8f815feeb46b0f48d4c Mon Sep 17 00:00:00 2001
From: chme
Date: Tue, 1 Sep 2020 20:56:57 +0200
Subject: [PATCH] [web-src] Add metadata fields to album dialog
---
web-src/src/components/ModalDialogAlbum.vue | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/web-src/src/components/ModalDialogAlbum.vue b/web-src/src/components/ModalDialogAlbum.vue
index e9f0d69b..6b8e621a 100644
--- a/web-src/src/components/ModalDialogAlbum.vue
+++ b/web-src/src/components/ModalDialogAlbum.vue
@@ -27,10 +27,30 @@
Album artist
{{ album.artist }}
+
+ Release date
+ {{ album.date_released | time('L') }}
+
+
+ Year
+ {{ album.year }}
+
Tracks
{{ album.track_count }}
+
+ Length
+ {{ album.length_ms | duration }}
+
+
+ Type
+ {{ album.media_kind }} - {{ album.data_kind }}
+
+
+ Added at
+ {{ album.time_added | time('L LT') }}
+