ticket 201 error & admin css for back icon

This commit is contained in:
rahul shukla 2019-06-14 14:22:22 +05:30
parent 5afef79ac2
commit 0bdd03b331
4 changed files with 6 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
{
"/js/admin.js": "/js/admin.js?id=301713f31cb0ba5260b5",
"/css/admin.css": "/css/admin.css?id=79d1d08f945a3e35e1c7"
"/css/admin.css": "/css/admin.css?id=226f12bd8a9461ca69f8"
}

View File

@ -218,7 +218,7 @@ body {
width: 24px;
height: 24px;
cursor: pointer;
margin-top: -2px;
margin-top: 5px;
}
h1 {

View File

@ -87,6 +87,9 @@ class Price extends AbstractProduct
$finalPrice[] = $price->final_price;
}
if (empty($finalPrice))
return $price[$product->id] = 0;
return $price[$product->id] = min($finalPrice);
}