Fix missing brace + comma

This commit is contained in:
Andrew Kennedy 2021-08-04 02:29:37 -07:00 committed by GitHub
parent 70991aebaa
commit 9aeef01a1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -243,6 +243,7 @@ export default {
url = new URL(this.link); url = new URL(this.link);
url.searchParams.set('inline', 'true'); url.searchParams.set('inline', 'true');
return url.href; return url.href;
},
fullLink: function () { fullLink: function () {
return window.location.origin + this.link; return window.location.origin + this.link;
}, },