Procházet zdrojové kódy

Fix: Fix style for image predefined size

pull/169/head
winkidney před 5 roky
committed by Isaac Bythewood
rodič
revize
a2bdf58943
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      pinry-spa/src/components/Pins.vue

+ 2
- 2
pinry-spa/src/components/Pins.vue Zobrazit soubor

@@ -76,8 +76,8 @@ function createImageItem(pin) {
image.original_url = pinHandler.escapeUrl(pin.image.image);
image.orgianl_width = pin.image.width;
image.style = {
width: pin.image.thumbnail.width,
height: pin.image.thumbnail.height,
width: `${pin.image.thumbnail.width}px`,
height: `${pin.image.thumbnail.height}px`,
};
return image;
}


Načítá se…
Zrušit
Uložit