diff --git a/plugin/source/dynamix.unraid.net/usr/local/emhttp/plugins/dynamix.my.servers/include/myservers1.php b/plugin/source/dynamix.unraid.net/usr/local/emhttp/plugins/dynamix.my.servers/include/myservers1.php index c3cf40c1e..47879167b 100644 --- a/plugin/source/dynamix.unraid.net/usr/local/emhttp/plugins/dynamix.my.servers/include/myservers1.php +++ b/plugin/source/dynamix.unraid.net/usr/local/emhttp/plugins/dynamix.my.servers/include/myservers1.php @@ -46,17 +46,25 @@ $localManifest = json_decode(file_get_contents($localManifestFile), true); $searchText = 'unraid-components.client.mjs'; $fileValue = null; +$cssValues = []; foreach ($localManifest as $key => $value) { if (strpos($key, $searchText) !== false && isset($value["file"])) { $fileValue = $value["file"]; break; } + + if (strpos($key, $searchText) !== false && isset($value["css"])) { + $cssValues = $value["css"]; + break; + } } if ($fileValue !== null) { $prefixedPath = '/plugins/dynamix.my.servers/unraid-components/'; echo ''; + + echo '' . PHP_EOL; } else { echo ''; } diff --git a/web/components/Notifications/Sidebar.vue b/web/components/Notifications/Sidebar.vue index 22a4a86da..23eab13e9 100644 --- a/web/components/Notifications/Sidebar.vue +++ b/web/components/Notifications/Sidebar.vue @@ -1,5 +1,10 @@ diff --git a/web/components/UserProfile.ce.vue b/web/components/UserProfile.ce.vue index 0bd6a095d..7736be70b 100644 --- a/web/components/UserProfile.ce.vue +++ b/web/components/UserProfile.ce.vue @@ -129,7 +129,6 @@ onBeforeMount(() => { -