diff --git a/src/renderer/views/components/inline-collection-list.ejs b/src/renderer/views/components/inline-collection-list.ejs index 3f70c930..1f4f2c6f 100644 --- a/src/renderer/views/components/inline-collection-list.ejs +++ b/src/renderer/views/components/inline-collection-list.ejs @@ -55,12 +55,6 @@ app: this.$root, } }, - watch:{ - data: function(newVal, oldVal) { - console.log("newdata",newVal); - }, - - }, methods: { getKind(item) { if (typeof item.kind != "undefined") { diff --git a/src/renderer/views/pages/library-artists.ejs b/src/renderer/views/pages/library-artists.ejs index 2a4397e8..31a83b2e 100644 --- a/src/renderer/views/pages/library-artists.ejs +++ b/src/renderer/views/pages/library-artists.ejs @@ -12,8 +12,8 @@
-
- +
+
@@ -47,6 +47,7 @@ response: null, title: null, type: null, requestBody: null }, clresponse: [], + clready: false, cltitle: '', cltype: "artists", @@ -56,6 +57,7 @@ let self = this; this.$root.$on('ap-inlinecollection', function(e){ console.log("hey",e) + self.clready = true; self.clresponse = e.response; self.cltitle = e.title ?? ''; self.cltype = e.type ; @@ -83,7 +85,7 @@ :type="item.type">
+ @dblclick="select">
{{ item.attributes.name }}
@@ -140,7 +142,6 @@ //app.select_selectMediaItem(u.id, this.getDataType(), this.index, this.guid, true) }, showCollection(response, title, type, requestBody = {}){ - console.log(response, title, type, requestBody); this.$root.$emit('ap-inlinecollection', { response: response, title: title, type: type, requestBody: {}} );