diff options
author | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-08-19 03:33:30 -0400 |
---|---|---|
committer | Michael Foiani <mfoiani2019@communiyschoolnaples.org> | 2018-08-19 03:33:30 -0400 |
commit | 2bfc10b63edfd578c6204f5e4b439d8f843e1361 (patch) | |
tree | 6f98b5798be24134204d75d5e060a6f2213d874d /src/components/competition-element.js | |
parent | 98b0aa1092d8b46b621a7d9d2772aa972d6957b6 (diff) |
Making small improvements to increase security and make the admin console smoother.
Diffstat (limited to 'src/components/competition-element.js')
-rw-r--r-- | src/components/competition-element.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/competition-element.js b/src/components/competition-element.js index 730b48e..2da6db5 100644 --- a/src/components/competition-element.js +++ b/src/components/competition-element.js @@ -84,7 +84,7 @@ class CompetitionElement extends LitElement { } registerComp() { - if(confirm('Are you sure you want to register for ' + this.name.replace(/[0-9]/g, '') + '?')) { + if(confirm('Are you sure you want to register for ' + this.name.replace(/[0-9]/g, '') + 'regional?')) { this.dispatchEvent(new CustomEvent('register-comp')); } } |