Merge pull request #56 from frennkie/fix-withdraw

fix https being stripped from QRCodes when showing print view
This commit is contained in:
Arc 2020-08-04 21:19:52 +01:00 committed by GitHub
commit 55a9dc749a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,12 +68,12 @@
mixins: [windowMixin],
data: function () {
return {
theurl: location.host,
theurl: location.protocol + '//' + location.host,
printDialog: {
show: true,
data: null
}
}
};
}
})
</script>