mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-03-15 12:20:21 +01:00
fix: copy invoice (#2500)
* fix: copy invoice * chore: add mixins * chore: make bundle
This commit is contained in:
parent
365f9a3923
commit
f37cb6481c
3 changed files with 3 additions and 1 deletions
2
lnbits/static/bundle.min.js
vendored
2
lnbits/static/bundle.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -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: {
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue