Remove walkthrough for non PM.

This commit is contained in:
Patrick Fic
2024-03-15 11:58:48 -07:00
parent f279fc1e81
commit ec517a0fc3
3 changed files with 1588 additions and 956 deletions

698
client/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -18,6 +18,7 @@ import ChatOpenButton from "../chat-open-button/chat-open-button.component";
import OwnerNameDisplay from "../owner-name-display/owner-name-display.component"; import OwnerNameDisplay from "../owner-name-display/owner-name-display.component";
import { setJoyRideSteps } from "../../redux/application/application.actions"; import { setJoyRideSteps } from "../../redux/application/application.actions";
import { OwnerNameDisplayFunction } from "./../owner-name-display/owner-name-display.component"; import { OwnerNameDisplayFunction } from "./../owner-name-display/owner-name-display.component";
import InstanceRenderManager from "../../utils/instanceRenderMgr";
const mapStateToProps = createStructuredSelector({ const mapStateToProps = createStructuredSelector({
bodyshop: selectBodyshop, bodyshop: selectBodyshop,
@@ -382,29 +383,35 @@ export function JobsList({bodyshop,setJoyRideSteps}) {
title={t('titles.bc.jobs-active')} title={t('titles.bc.jobs-active')}
extra={ extra={
<Space wrap> <Space wrap>
{InstanceRenderManager({
promanager: (
<Button <Button
onClick={() => onClick={() =>
setJoyRideSteps([ setJoyRideSteps([
{ {
target: '#active-jobs-list', target: '#active-jobs-list',
content: 'This is where you will see all work coming in and currently here.', content:
'This is where you will see all work coming in and currently here.',
}, },
{ {
target: '#header-jobs', target: '#header-jobs',
spotlightClicks: true, spotlightClicks: true,
disableOverlayClose: true, disableOverlayClose: true,
content: 'The jobs menu lets you access additional pages to see more information. You can import new jobs, search all jobs, or manage your current production.', content:
'The jobs menu lets you access additional pages to see more information. You can import new jobs, search all jobs, or manage your current production.',
}, },
{ {
target: '#header-jobs-available', target: '#header-jobs-available',
content: 'You can find jobs to import here.', content: 'You can find jobs to import here.',
}, },
]) ])
} }
> >
Start Walk Through Start Walk Through
</Button> </Button>
),
})}
<Button onClick={() => refetch()}> <Button onClick={() => refetch()}>
<SyncOutlined /> <SyncOutlined />
</Button> </Button>

1797
package-lock.json generated

File diff suppressed because it is too large Load Diff