Chore: Remove webkit warnings about missing template / render functions

This commit is contained in:
Ralph Slooten
2026-01-07 12:58:44 +13:00
parent 0847167694
commit f9024d1f77
2 changed files with 10 additions and 0 deletions

View File

@@ -53,5 +53,10 @@ export default {
navigator.setAppBadge(this.mailboxUnread);
},
},
render() {
// to remove webkit warnings about missing template or render function
return false;
},
};
</script>

View File

@@ -112,5 +112,10 @@ export default {
this.favicon.href = canvas.toDataURL("image/png");
},
},
render() {
// to remove webkit warnings about missing template or render function
return false;
},
};
</script>