:class="{ 'icon-loading': loading === shippedBackground.name, active: background === shippedBackground.name }"
tabindex="0"
class="background"
- :style="{ 'background-image': 'url(' + shippedBackground.url + ')' }"
+ :style="{ 'background-image': 'url(' + shippedBackground.preview + ')' }"
@click="setShipped(shippedBackground.name)"
@keyup.enter="setShipped(shippedBackground.name)"
@keyup.space="setShipped(shippedBackground.name)" />
return {
name: item,
url: prefixWithBaseUrl(item),
+ preview: prefixWithBaseUrl('previews/' + item),
details: shippedBackgroundList[item],
}
})