aboutsummaryrefslogtreecommitdiff
path: root/src/components/registry-element.js
diff options
context:
space:
mode:
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);