Added hash history to job detail page.

This commit is contained in:
Patrick Fic
2020-01-22 15:12:04 -08:00
parent 42505ad74e
commit 16861c5b41
4 changed files with 26 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
import { useQuery } from "@apollo/react-hooks";
import React, { useEffect } from "react";
import React, { useEffect, useState } from "react";
import { useTranslation } from "react-i18next";
import AlertComponent from "../../components/alert/alert.component";
import SpinComponent from "../../components/loading-spinner/loading-spinner.component";
@@ -25,7 +25,13 @@ function JobsDetailPageContainer({ match, location }) {
if (loading) return <SpinComponent />;
if (error) return <AlertComponent message={error.message} type='error' />;
return <JobsDetailPage hash={hash} data={data} jobId={jobId} match={match} />;
return (
<JobsDetailPage
hash={hash ? hash.substring(1) : "#lines"}
data={data}
jobId={jobId}
match={match}
/>
);
}
export default JobsDetailPageContainer;