aboutsummaryrefslogtreecommitdiff
path: root/src/components/test-element.js
diff options
context:
space:
mode:
authorMichael Foiani <mfoiani2019@communiyschoolnaples.org>2018-09-13 17:41:10 -0400
committerMichael Foiani <mfoiani2019@communiyschoolnaples.org>2018-09-13 17:41:10 -0400
commit79745ab407f66eda13f643193e67159aef547bd7 (patch)
treedffddf4347f8ca990af4a03492a05f9042cbbe05 /src/components/test-element.js
parentd625ff12ee205f835c049f6a0e27c53a7ecbda36 (diff)
Fixed bugs with competitions. Also, allowed for stats divison to bee seen by admin for competition. Lastly, fixed some errors with admin controls after logging out.
Diffstat (limited to 'src/components/test-element.js')
-rw-r--r--src/components/test-element.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/test-element.js b/src/components/test-element.js
index bbe1499..6367691 100644
--- a/src/components/test-element.js
+++ b/src/components/test-element.js
@@ -84,7 +84,7 @@ class TestElement extends LitElement {
}
registerComp() {
- if(confirm('Are you sure you want to register for ' + this.name + '?')) {
+ if(confirm('Are you sure you want to register for ' + this.name.replace("_", " ") + '?')) {
this.dispatchEvent(new CustomEvent('register-comp'));
}
}