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

694
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>
<Button {InstanceRenderManager({
onClick={() => promanager: (
setJoyRideSteps([ <Button
{ onClick={() =>
target: '#active-jobs-list', setJoyRideSteps([
content: 'This is where you will see all work coming in and currently here.', {
}, target: '#active-jobs-list',
{ content:
target: '#header-jobs', 'This is where you will see all work coming in and currently here.',
spotlightClicks :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.', target: '#header-jobs',
}, spotlightClicks: true,
{ disableOverlayClose: true,
target: '#header-jobs-available', content:
content: 'You can find jobs to import here.', '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',
} content: 'You can find jobs to import here.',
> },
Start Walk Through ])
</Button> }
>
Start Walk Through
</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