fix: copy invoice (#2500)

* fix: copy invoice
* chore: add mixins
* chore: make bundle
This commit is contained in:
Vlad Stan 2024-05-14 18:55:45 +03:00 committed by GitHub
parent 365f9a3923
commit f37cb6481c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 1 deletions

File diff suppressed because one or more lines are too long

View file

@ -83,6 +83,7 @@ function generateChart(canvas, rawData) {
Vue.component('payment-chart', { Vue.component('payment-chart', {
name: 'payment-chart', name: 'payment-chart',
props: ['wallet'], props: ['wallet'],
mixins: [windowMixin],
data: function () { data: function () {
return { return {
paymentsChart: { paymentsChart: {

View file

@ -1,6 +1,7 @@
Vue.component('payment-list', { Vue.component('payment-list', {
name: 'payment-list', name: 'payment-list',
props: ['update', 'wallet', 'mobileSimple', 'lazy'], props: ['update', 'wallet', 'mobileSimple', 'lazy'],
mixins: [windowMixin],
data: function () { data: function () {
return { return {
denomination: LNBITS_DENOMINATION, denomination: LNBITS_DENOMINATION,