1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-03 04:26:23 +02:00
This commit is contained in:
syuilo
2019-04-08 19:56:42 +09:00
parent 3a26acbdb2
commit fab0cc51b3
13 changed files with 17 additions and 24 deletions

View File

@@ -153,7 +153,7 @@ export default Vue.extend({
thumbnail(file: any): any {
return {
'background-color': file.properties.avgColor && file.properties.avgColor.length == 3 ? `rgb(${file.properties.avgColor.join(',')})` : 'transparent',
'background-color': file.properties.avgColor || 'transparent',
'background-image': `url(${file.thumbnailUrl})`
};
},