mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 09:43:09 +02:00
Fix bug
This commit is contained in:
parent
b83fc7989c
commit
82ab9c5d1c
2 changed files with 2 additions and 2 deletions
|
@ -81,7 +81,7 @@
|
|||
<script>
|
||||
this.image = this.opts.image;
|
||||
this.styles = {
|
||||
'background-color': `rgb(${this.image.properties.average_color.join(',')})`,
|
||||
'background-color': this.image.properties.average_color ? `rgb(${this.image.properties.average_color.join(',')})` : 'transparent',
|
||||
'background-image': `url(${this.image.url}?thumbnail&size=512)`
|
||||
};
|
||||
console.log(this.styles);
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
<script>
|
||||
this.image = this.opts.image;
|
||||
this.styles = {
|
||||
'background-color': `rgb(${this.image.properties.average_color.join(',')})`,
|
||||
'background-color': this.image.properties.average_color ? `rgb(${this.image.properties.average_color.join(',')})` : 'transparent',
|
||||
'background-image': `url(${this.image.url}?thumbnail&size=512)`
|
||||
};
|
||||
</script>
|
||||
|
|
Loading…
Reference in a new issue