diff --git a/website/client/src/components/admin-panel/search.vue b/website/client/src/components/admin-panel/search.vue
index f80543f85c..7b2baa92d0 100644
--- a/website/client/src/components/admin-panel/search.vue
+++ b/website/client/src/components/admin-panel/search.vue
@@ -7,7 +7,7 @@
>
Could not find any matching users.
-
+
{
+ this.isSearching = false;
if (users.length === 1) {
this.loadUser(users[0]._id);
} else {
diff --git a/website/client/src/components/ui/loadingSpinner.vue b/website/client/src/components/ui/loadingSpinner.vue
index 32e60c08b1..96ee6a5993 100644
--- a/website/client/src/components/ui/loadingSpinner.vue
+++ b/website/client/src/components/ui/loadingSpinner.vue
@@ -2,6 +2,7 @@
@@ -39,6 +40,10 @@
border-color: $white transparent transparent transparent;
}
+ .loading-spinner-purple div {
+ border-color: $purple-200 transparent transparent transparent;
+ }
+
.loading-spinner div:nth-child(1) {
animation-delay: -0.45s;
}
@@ -58,3 +63,16 @@
}
}
+
+