develop #10

Merged
pablone merged 64 commits from develop into master 2024-04-22 11:35:55 +00:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit ac8fbfb4ad - Show all commits

View File

@ -128,10 +128,10 @@ export default defineComponent({
const checkImageValidity = (imageLink) => {
const validExtensions = [".jpg", ".jpeg", ".png"];
if (imageLink) {
/*if (imageLink) {
const extension = imageLink.substring(imageLink.lastIndexOf("."));
return validExtensions.includes(extension.toLowerCase());
}
}*/
return true;
};
@ -182,6 +182,7 @@ export default defineComponent({
<div class="product-content">
<header class="product-content-header">
<h3 class="product-content-title subtitle">
{{ products.current?.image }}
{{ products.current?.name }}
<q-skeleton type="rect" v-if="!products.current?.name" />
</h3>