Your ROOT_URL in app.ini is https://bdgit.educoder.net/ but you are visiting http://bdgit.educoder.net/hushasha/aggregation-platform/src/commit/702d2be8e8b231e4140213adea79299bc86dec99/plugins/kubernetes/ts/kubernetesNavigation.ts You should set ROOT_URL correctly, otherwise the web may not work correctly.
aggregation-platform/plugins/kubernetes/ts/kubernetesNavigation.ts

25 lines
611 B

/// <reference path="../../includes.ts"/>
/// <reference path="kubernetesHelpers.ts"/>
module Kubernetes {
export function selectSubNavBar($scope, tabName, newSubTabLabel) {
var foundTab = null;
angular.forEach($scope.subTabConfig, (tab) => {
if (tabName === tab.label || tabName === tab.id) {
foundTab = tab;
}
});
var breadcrumbConfig = $scope.breadcrumbConfig;
if (foundTab && breadcrumbConfig) {
breadcrumbConfig.push(foundTab);
$scope.subTabConfig = [
{
label: newSubTabLabel
}
];
}
}
}