@christianriedl/media 1.0.157 → 1.0.159

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christianriedl/media",
3
- "version": "1.0.157",
3
+ "version": "1.0.159",
4
4
  "description": "RIC media interfaces",
5
5
 
6
6
  "main": "dist/index.js",
@@ -90,7 +90,7 @@
90
90
  <v-list-item v-if="selected" lines="one">
91
91
  <template v-slot:prepend>
92
92
  <v-avatar rounded="0" :size="avatarSize" v-if="selected.thumbnailUrl">
93
- <v-img :src="selected.thumbnailUrl"></v-img>
93
+ <v-img :src="selected.thumbnailUrl" :cover="false"></v-img>
94
94
  </v-avatar>
95
95
  </template>
96
96
  <v-list-item-content>
@@ -114,7 +114,7 @@
114
114
  :subtitle="item.subTitle" @click="listItem(item)">
115
115
  <template v-slot:prepend>
116
116
  <v-avatar rounded="0" size="x-large" v-if="item.thumbnailUrl">
117
- <v-img :src="item.thumbnailUrl"></v-img>
117
+ <v-img :src="item.thumbnailUrl" :cover="false"></v-img>
118
118
  </v-avatar>
119
119
  </template>
120
120
  </v-list-item>
@@ -117,7 +117,7 @@
117
117
  <v-list-item v-if="selected" lines="one">
118
118
  <template v-slot:prepend>
119
119
  <v-avatar rounded="0" :size="avatarSize" v-if="selected.thumbnailUrl">
120
- <v-img :src="selected.thumbnailUrl"></v-img>
120
+ <v-img :src="selected.thumbnailUrl" :cover="false"></v-img>
121
121
  </v-avatar>
122
122
  </template>
123
123
  <v-list-item-content>
@@ -151,7 +151,7 @@
151
151
  <v-list-item v-for="item in items" :key="item.dlnaid" :title="item.title" :subtitle="item.subTitle" @click="listItem(item)">
152
152
  <template v-slot:prepend>
153
153
  <v-avatar rounded="0" size="x-large" v-if="item.thumbnailUrl">
154
- <v-img :src="item.thumbnailUrl"></v-img>
154
+ <v-img :src="item.thumbnailUrl" :cover="false"></v-img>
155
155
  </v-avatar>
156
156
  </template>
157
157
  </v-list-item>