summaryrefslogtreecommitdiff
path: root/public/application.js
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-04-22 16:01:31 -0600
committermo khan <mo@mokhan.ca>2025-04-22 16:01:31 -0600
commita4c1a145950739ac307eb7607ccedd7b10584d90 (patch)
tree74c032d9004218fcd1021f0f301b8edf84150a49 /public/application.js
parent28ec60ecbc0a39901246f5cb59a8ad05c20de6b1 (diff)
feat: require login to view sparkle form
Diffstat (limited to 'public/application.js')
-rw-r--r--public/application.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/public/application.js b/public/application.js
index dcc45f8..35ea2b6 100644
--- a/public/application.js
+++ b/public/application.js
@@ -21,7 +21,7 @@ document.addEventListener('DOMContentLoaded', (event) => {
},
isDisabled: function() {
return this.isSending || !this.isValid();
- },
+ }
},
data() {
return {
@@ -71,6 +71,7 @@ document.addEventListener('DOMContentLoaded', (event) => {
}
})
+ app.config.compilerOptions.delimiters = ["${", "}"];
app.mount('#app')
})