dash-button-web 0.0.19 → 0.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/dash-button.cjs.entry.js +5 -1
- package/dist/cjs/dash-button.cjs.entry.js.map +1 -1
- package/dist/collection/services/menu.js +5 -1
- package/dist/collection/services/menu.js.map +1 -1
- package/dist/components/dash-button.js +5 -1
- package/dist/components/dash-button.js.map +1 -1
- package/dist/esm/dash-button.entry.js +5 -1
- package/dist/esm/dash-button.entry.js.map +1 -1
- package/dist/web-compnont/p-94d91144.entry.js +10 -0
- package/dist/web-compnont/p-94d91144.entry.js.map +1 -0
- package/dist/web-compnont/web-compnont.esm.js +1 -1
- package/package.json +1 -1
- package/dist/web-compnont/p-29867d0f.entry.js +0 -10
- package/dist/web-compnont/p-29867d0f.entry.js.map +0 -1
|
@@ -3975,7 +3975,11 @@ class MenuService {
|
|
|
3975
3975
|
}
|
|
3976
3976
|
async getMenuLinks(BASE_URL) {
|
|
3977
3977
|
const normalizedBaseUrl = this.setDefaultProtocol(BASE_URL);
|
|
3978
|
-
|
|
3978
|
+
// Create a URL object from normalizedBaseUrl
|
|
3979
|
+
const urlObj = new URL(normalizedBaseUrl);
|
|
3980
|
+
// Add the 'containerisationbackend' subdomain
|
|
3981
|
+
urlObj.hostname = `containerisationbackend.${urlObj.hostname}`;
|
|
3982
|
+
const { data } = await this.getMenuConfig(`${urlObj.origin}/developer/charts/installed`);
|
|
3979
3983
|
return data.map(d => {
|
|
3980
3984
|
var _a, _b, _c;
|
|
3981
3985
|
const frontendUrlPrefix = (_a = d.metadata) === null || _a === void 0 ? void 0 : _a.frontendUrlPrefix;
|