mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-03-04 01:53:59 +01:00
Merge pull request #56 from frennkie/fix-withdraw
fix https being stripped from QRCodes when showing print view
This commit is contained in:
commit
55a9dc749a
1 changed files with 2 additions and 2 deletions
|
@ -68,12 +68,12 @@
|
||||||
mixins: [windowMixin],
|
mixins: [windowMixin],
|
||||||
data: function () {
|
data: function () {
|
||||||
return {
|
return {
|
||||||
theurl: location.host,
|
theurl: location.protocol + '//' + location.host,
|
||||||
printDialog: {
|
printDialog: {
|
||||||
show: true,
|
show: true,
|
||||||
data: null
|
data: null
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Reference in a new issue