aboutsummaryrefslogtreecommitdiff
path: root/src/components/registry-element.js
diff options
context:
space:
mode:
authorMichael Foiani <mfoiani2019@communiyschoolnaples.org>2018-08-03 16:48:12 -0400
committerMichael Foiani <mfoiani2019@communiyschoolnaples.org>2018-08-03 16:48:12 -0400
commit0b99dd4f1dde513cf142f308c6c29af60cb689e1 (patch)
tree5dd94d5c06565eb19801cc6b3585b7a893df884f /src/components/registry-element.js
parent37bad7137e3f64913705566f904938f98c4c88ef (diff)
Made changes to some forms and also fixed a small bug with registry element.
Diffstat (limited to 'src/components/registry-element.js')
-rw-r--r--src/components/registry-element.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/registry-element.js b/src/components/registry-element.js
index 79ef03f..03521ab 100644
--- a/src/components/registry-element.js
+++ b/src/components/registry-element.js
@@ -126,9 +126,9 @@ class RegistryElement extends LitElement {
listElement.innerHTML = this.emails[i] .replace('@communityschoolnaples.org', '');
if (this.divisons[i].includes('Mu')) {
mus .appendChild(listElement);
- } else if (this.divisons[i].includes('Theta')) {
- alphas .appendChild(listElement)
} else if (this.divisons[i].includes('Alpha')) {
+ alphas .appendChild(listElement)
+ } else if (this.divisons[i].includes('Theta')) {
thetas .appendChild(listElement)
} else {
other .appendChild(listElement);