add missing protocol (to ensure http - or more likely - https://)

This commit is contained in:
Robert Habermann 2020-08-02 20:01:07 +02:00
parent c17ac32c86
commit 1e36a8a393

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>