diff --git a/dashboard/src/App.js b/dashboard/src/App.js
index 2acf1e5def..1eb46ebbef 100644
--- a/dashboard/src/App.js
+++ b/dashboard/src/App.js
@@ -101,6 +101,10 @@ const App = () => {
element={}
/>
+ }
+ />
}
diff --git a/dashboard/src/modules/components/HeaderComponent/index.jsx b/dashboard/src/modules/components/HeaderComponent/index.jsx
index 841477f94d..7e1fa04668 100644
--- a/dashboard/src/modules/components/HeaderComponent/index.jsx
+++ b/dashboard/src/modules/components/HeaderComponent/index.jsx
@@ -28,13 +28,12 @@ import {
} from "@patternfly/react-core";
import { NAVBAR_CLOSE, NAVBAR_OPEN } from "actions/types";
import React, { useState } from "react";
+import { movePage, sessionLogout } from "actions/authActions";
import { useDispatch, useSelector } from "react-redux";
import { useLocation, useNavigate } from "react-router-dom";
-import { sessionLogout } from "actions/authActions";
import pbenchLogo from "assets/logo/pbench_logo.svg";
import { useKeycloak } from "@react-keycloak/web";
-import { movePage } from "actions/authActions";
const HeaderToolbar = () => {
const dispatch = useDispatch();
@@ -143,7 +142,7 @@ const HeaderComponent = () => {
-
+
diff --git a/dashboard/src/modules/components/LoadingComponent/index.less b/dashboard/src/modules/components/LoadingComponent/index.less
index 6759296ee3..eea05cc8eb 100644
--- a/dashboard/src/modules/components/LoadingComponent/index.less
+++ b/dashboard/src/modules/components/LoadingComponent/index.less
@@ -5,9 +5,13 @@
width: 15%;
height: 15%;
position: absolute;
- top: 30%;
- left: 30%;
+ top: 35%;
+ left: 50%;
z-index: 9999;
+ .pf-c-spinner {
+ width: 40px;
+ height: 40px;
+ }
}
}
.main-with-spinner {
diff --git a/dashboard/src/modules/components/SidebarComponent/sideMenuOptions.js b/dashboard/src/modules/components/SidebarComponent/sideMenuOptions.js
index f9e341ffcf..0aa3184243 100644
--- a/dashboard/src/modules/components/SidebarComponent/sideMenuOptions.js
+++ b/dashboard/src/modules/components/SidebarComponent/sideMenuOptions.js
@@ -21,7 +21,7 @@ export const menuOptions = [
submenu: true,
key: "all_runs",
submenuOf: "dashboard",
- link: "all_runs",
+ link: "all-runs",
},
{
name: "Results",
diff --git a/dashboard/src/modules/components/TableComponent/index.jsx b/dashboard/src/modules/components/TableComponent/index.jsx
index b2f4163977..035409cea9 100644
--- a/dashboard/src/modules/components/TableComponent/index.jsx
+++ b/dashboard/src/modules/components/TableComponent/index.jsx
@@ -26,7 +26,6 @@ import { useDispatch, useSelector } from "react-redux";
import { DATASET_UPLOADED } from "assets/constants/overviewConstants";
import DatePickerWidget from "../DatePickerComponent";
-import PathBreadCrumb from "../BreadCrumbComponent";
import { RenderPagination } from "../OverviewComponent/common-component";
import TablePagination from "../PaginationComponent";
import { useKeycloak } from "@react-keycloak/web";
@@ -129,10 +128,6 @@ const TableWithFavorite = () => {
const onCloseLoginHint = () => {
setLoginHintVisible(false);
};
- const datasetBreadcrumb = [
- { name: "Dashboard", link: "/" },
- { name: "Results", link: "" },
- ];
/* Favorite Table Pagination */
const onSetPage = (_evt, newPage, _perPage, startIdx, endIdx) => {
@@ -157,7 +152,6 @@ const TableWithFavorite = () => {
/>
)}