diff --git a/_webGui/testWebComponents.page b/_webGui/testWebComponents.page
index e2008028e..67b7bef99 100644
--- a/_webGui/testWebComponents.page
+++ b/_webGui/testWebComponents.page
@@ -135,6 +135,9 @@ if ($display['theme'] === 'black' || $display['theme'] === 'azure') {
+
+
+
diff --git a/components/Auth.ce.vue b/components/Auth.ce.vue
index 1a198f012..3f36f79c4 100644
--- a/components/Auth.ce.vue
+++ b/components/Auth.ce.vue
@@ -26,11 +26,11 @@ const button = computed(() => {
-
-
- {{ stateData.error.heading }}
+
+
+ {{ stateData.heading }}
- {{ stateData.error.message }}
+ {{ stateData.message }}
new URL(`/graphql/api/logs?apiKey=${apiKey.va
-
-
+
+
The primary method of support for Unraid Connect is through our forums and Discord. If you are asked to supply logs, please open a support request on our Contact Page and reply to the email message you receive with your logs attached. The logs may contain sensitive information so do not post them publicly.
diff --git a/components/UserProfile.ce.vue b/components/UserProfile.ce.vue
index 431e53794..0eb5c4012 100644
--- a/components/UserProfile.ce.vue
+++ b/components/UserProfile.ce.vue
@@ -11,22 +11,21 @@ import '~/assets/main.css';
export interface Props {
server?: Server;
- showDescription?: boolean;
}
-const props = withDefaults(defineProps(), {
- showDescription: true,
-});
+const props = defineProps();
const callbackStore = useCallbackStore();
const dropdownStore = useDropdownStore()
const serverStore = useServerStore();
const { dropdownVisible } = storeToRefs(dropdownStore);
-const { name, description, lanIp } = storeToRefs(serverStore);
+const { name, description, lanIp, theme } = storeToRefs(serverStore);
/**
* Close dropdown when clicking outside
- * @fix ignore not working
+ * @note
+ * If in testing you have two variants of the component on a page
+ * the clickOutside will fire twice making it seem like it doesn't work
*/
const clickOutsideTarget = ref();
const clickOutsideIgnoreTarget = ref();
@@ -90,7 +89,7 @@ onBeforeMount(() => {