summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-08-16 07:56:53 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-08-16 07:56:53 +0900
commite7d9018944bdf32d179c19a96e645eb298b3732c (patch)
tree621bbb1909847fda48b38ee50b4b515e3362cda4
parentwip (diff)
downloadsharkey-e7d9018944bdf32d179c19a96e645eb298b3732c.tar.gz
sharkey-e7d9018944bdf32d179c19a96e645eb298b3732c.tar.bz2
sharkey-e7d9018944bdf32d179c19a96e645eb298b3732c.zip
:v:
-rw-r--r--src/client/app/mobile/views/components/drive.file.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/components/drive.file.vue b/src/client/app/mobile/views/components/drive.file.vue
index 776e11ecf8..c337629cb6 100644
--- a/src/client/app/mobile/views/components/drive.file.vue
+++ b/src/client/app/mobile/views/components/drive.file.vue
@@ -43,7 +43,7 @@ export default Vue.extend({
thumbnail(): any {
return {
'background-color': this.file.properties.avgColor && this.file.properties.avgColor.length == 3 ? `rgb(${this.file.properties.avgColor.join(',')})` : 'transparent',
- 'background-image': `url(${this.file.url})`
+ 'background-image': `url(${this.file.thumbnailUrl})`
};
}
},