diff --git a/.idea/evibes.iml b/.idea/evibes.iml deleted file mode 100644 index 307a37b8..00000000 --- a/.idea/evibes.iml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/storefront/README.md b/storefront/README.md deleted file mode 100644 index 25b58212..00000000 --- a/storefront/README.md +++ /dev/null @@ -1,75 +0,0 @@ -# Nuxt Minimal Starter - -Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more. - -## Setup - -Make sure to install dependencies: - -```bash -# npm -npm install - -# pnpm -pnpm install - -# yarn -yarn install - -# bun -bun install -``` - -## Development Server - -Start the development server on `http://localhost:3000`: - -```bash -# npm -npm run dev - -# pnpm -pnpm dev - -# yarn -yarn dev - -# bun -bun run dev -``` - -## Production - -Build the application for production: - -```bash -# npm -npm run build - -# pnpm -pnpm build - -# yarn -yarn build - -# bun -bun run build -``` - -Locally preview production build: - -```bash -# npm -npm run preview - -# pnpm -pnpm preview - -# yarn -yarn preview - -# bun -bun run preview -``` - -Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information. diff --git a/storefront/app.vue b/storefront/app.vue index a88ab6bf..1e99eeb8 100644 --- a/storefront/app.vue +++ b/storefront/app.vue @@ -23,7 +23,6 @@ import {useRefresh} from "~/composables/auth"; import {useLanguages} from "~/composables/languages"; import {useCompanyInfo} from "~/composables/company"; import {useCategories} from "~/composables/categories"; -import {useNotification} from "~/composables/notification"; const { locale } = useI18n(); const route = useRoute(); @@ -38,7 +37,8 @@ const showBreadcrumbs = computed(() => { 'brand', 'search', 'profile', - 'activate-user' + 'activate-user', + 'reset-password' ].some(prefix => name.startsWith(prefix)); }); diff --git a/storefront/components/cards/order.vue b/storefront/components/cards/order.vue index c59f0432..355c6605 100644 --- a/storefront/components/cards/order.vue +++ b/storefront/components/cards/order.vue @@ -52,6 +52,8 @@

{{ product.node.product.name }}

diff --git a/storefront/components/cards/product.vue b/storefront/components/cards/product.vue index 61e7ea7e..87cfae28 100644 --- a/storefront/components/cards/product.vue +++ b/storefront/components/cards/product.vue @@ -67,6 +67,7 @@ productUuid: product.uuid, productName: product.name })" + :type="'button'" :isLoading="removeLoading" > {{ t('buttons.removeFromCart') }} @@ -79,6 +80,7 @@ productUuid: product.uuid, productName: product.name })" + :type="'button'" :isLoading="addLoading" > {{ t('buttons.addToCart') }} @@ -106,7 +108,7 @@ > - - +