From 7a1ec091042cb13781b5ae576d215aa310f17dc1 Mon Sep 17 00:00:00 2001 From: Tiago Vasconcelos Date: Tue, 20 Dec 2022 09:53:37 +0000 Subject: [PATCH] add toast on add to cart --- .../extensions/diagonalley/templates/diagonalley/stall.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lnbits/extensions/diagonalley/templates/diagonalley/stall.html b/lnbits/extensions/diagonalley/templates/diagonalley/stall.html index e758a7bb..9827ba9b 100644 --- a/lnbits/extensions/diagonalley/templates/diagonalley/stall.html +++ b/lnbits/extensions/diagonalley/templates/diagonalley/stall.html @@ -347,6 +347,11 @@ price: item.price }) } + this.$q.notify({ + type: 'positive', + message: `${item.product} added to cart`, + icon: 'thumb_up' + }) this.cart.products = prod this.updateCart(item.price) },