From 1f389327e9e4b98a74078229bda7ba41f9acc5e0 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Tue, 17 Aug 2021 16:06:38 +1000 Subject: [PATCH] web: Job: don't display loading/refresh header The individual job page loads quickly and there's no need to have a "refresh" button taking up a lot of header space (nobody needs to refresh the job they're looking at, and if they do, the browser refresh does the same thing because it's a unique URL). Remove it. Change-Id: I09c4174379dde38e3f55cb731bc991039c4a4dd2 --- web/src/pages/Job.jsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/web/src/pages/Job.jsx b/web/src/pages/Job.jsx index d8f18841b1..efb4cfddc6 100644 --- a/web/src/pages/Job.jsx +++ b/web/src/pages/Job.jsx @@ -18,7 +18,6 @@ import PropTypes from 'prop-types' import { PageSection, PageSectionVariants } from '@patternfly/react-core' import Job from '../containers/job/Job' -import { Fetchable } from '../containers/Fetching' import { fetchJobIfNeeded } from '../actions/job' @@ -55,12 +54,6 @@ class JobPage extends React.Component { const jobName = this.props.match.params.jobName return ( - - - {tenantJobs && tenantJobs[jobName] && } )