Tweak some headers with the new names (#1433)
Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com>
This commit is contained in:
@@ -68,7 +68,7 @@ const Dashboard = ({ classes, displayErrorMessage }: IDashboardSimple) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<PageHeader label="Dashboard" />
|
<PageHeader label="Metrics" />
|
||||||
{loading ? (
|
{loading ? (
|
||||||
<Grid container>
|
<Grid container>
|
||||||
<Grid item xs={12} className={classes.container}>
|
<Grid item xs={12} className={classes.container}>
|
||||||
|
|||||||
@@ -255,7 +255,7 @@ const Heal = ({ classes, distributedSetup }: IHeal) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<PageHeader label="Heal" />
|
<PageHeader label="Drives" />
|
||||||
<PageLayout>
|
<PageLayout>
|
||||||
{!distributedSetup ? (
|
{!distributedSetup ? (
|
||||||
<DistributedOnly entity={"Heal"} iconComponent={<HealIcon />} />
|
<DistributedOnly entity={"Heal"} iconComponent={<HealIcon />} />
|
||||||
|
|||||||
@@ -45,10 +45,8 @@ import { Button, Grid } from "@mui/material";
|
|||||||
import PageHeader from "../Common/PageHeader/PageHeader";
|
import PageHeader from "../Common/PageHeader/PageHeader";
|
||||||
import { setServerDiagStat, setSnackBarMessage } from "../../../actions";
|
import { setServerDiagStat, setSnackBarMessage } from "../../../actions";
|
||||||
import CircularProgress from "@mui/material/CircularProgress";
|
import CircularProgress from "@mui/material/CircularProgress";
|
||||||
import BackLink from "../../../common/BackLink";
|
|
||||||
import TestWrapper from "../Common/TestWrapper/TestWrapper";
|
import TestWrapper from "../Common/TestWrapper/TestWrapper";
|
||||||
import PageLayout from "../Common/Layout/PageLayout";
|
import PageLayout from "../Common/Layout/PageLayout";
|
||||||
import { IAM_PAGES } from "../../../common/SecureComponent/permissions";
|
|
||||||
|
|
||||||
const styles = (theme: Theme) =>
|
const styles = (theme: Theme) =>
|
||||||
createStyles({
|
createStyles({
|
||||||
@@ -234,8 +232,6 @@ const HealthInfo = ({
|
|||||||
return (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<PageHeader label="Diagnostic" />
|
<PageHeader label="Diagnostic" />
|
||||||
<BackLink to={IAM_PAGES.TOOLS} label="Return to Support" />
|
|
||||||
|
|
||||||
<PageLayout>
|
<PageLayout>
|
||||||
<Grid item xs={12} className={classes.boxy}>
|
<Grid item xs={12} className={classes.boxy}>
|
||||||
<TestWrapper title={title} advancedVisible={false}>
|
<TestWrapper title={title} advancedVisible={false}>
|
||||||
|
|||||||
@@ -37,12 +37,10 @@ import { AppState } from "../../../store";
|
|||||||
import { SpeedtestIcon } from "../../../icons";
|
import { SpeedtestIcon } from "../../../icons";
|
||||||
import {
|
import {
|
||||||
CONSOLE_UI_RESOURCE,
|
CONSOLE_UI_RESOURCE,
|
||||||
IAM_PAGES,
|
|
||||||
IAM_SCOPES,
|
IAM_SCOPES,
|
||||||
} from "../../../common/SecureComponent/permissions";
|
} from "../../../common/SecureComponent/permissions";
|
||||||
import STResults from "./STResults";
|
import STResults from "./STResults";
|
||||||
import InputBoxWrapper from "../Common/FormComponents/InputBoxWrapper/InputBoxWrapper";
|
import InputBoxWrapper from "../Common/FormComponents/InputBoxWrapper/InputBoxWrapper";
|
||||||
import BackLink from "../../../common/BackLink";
|
|
||||||
import ProgressBarWrapper from "../Common/ProgressBarWrapper/ProgressBarWrapper";
|
import ProgressBarWrapper from "../Common/ProgressBarWrapper/ProgressBarWrapper";
|
||||||
import InputUnitMenu from "../Common/FormComponents/InputUnitMenu/InputUnitMenu";
|
import InputUnitMenu from "../Common/FormComponents/InputUnitMenu/InputUnitMenu";
|
||||||
import CheckboxWrapper from "../Common/FormComponents/CheckboxWrapper/CheckboxWrapper";
|
import CheckboxWrapper from "../Common/FormComponents/CheckboxWrapper/CheckboxWrapper";
|
||||||
@@ -200,8 +198,7 @@ const Speedtest = ({ classes, distributedSetup }: ISpeedtest) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<PageHeader label="Speedtest" />
|
<PageHeader label="Performance" />
|
||||||
<BackLink to={IAM_PAGES.TOOLS} label="Return to Support" />
|
|
||||||
<PageLayout>
|
<PageLayout>
|
||||||
{!distributedSetup ? (
|
{!distributedSetup ? (
|
||||||
<DistributedOnly
|
<DistributedOnly
|
||||||
@@ -245,7 +242,9 @@ const Speedtest = ({ classes, distributedSetup }: ISpeedtest) => {
|
|||||||
"Speedtest in progress..."
|
"Speedtest in progress..."
|
||||||
) : (
|
) : (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
{currStatus && !start ? "Done!" : "Start a new test"}
|
{currStatus && !start
|
||||||
|
? "Done!"
|
||||||
|
: "Start a new speed test"}
|
||||||
</Fragment>
|
</Fragment>
|
||||||
)}
|
)}
|
||||||
{start && <CircularProgress size={15} />}
|
{start && <CircularProgress size={15} />}
|
||||||
|
|||||||
Reference in New Issue
Block a user