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 { setJoyRideSteps } from "../../redux/application/application.actions";
import { OwnerNameDisplayFunction } from "./../owner-name-display/owner-name-display.component";
import InstanceRenderManager from "../../utils/instanceRenderMgr";
const mapStateToProps = createStructuredSelector({
bodyshop: selectBodyshop,
@@ -382,29 +383,35 @@ export function JobsList({bodyshop,setJoyRideSteps}) {
title={t('titles.bc.jobs-active')}
extra={
<Space wrap>
<Button
onClick={() =>
setJoyRideSteps([
{
target: '#active-jobs-list',
content: 'This is where you will see all work coming in and currently here.',
},
{
target: '#header-jobs',
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-available',
content: 'You can find jobs to import here.',
},
])
}
>
Start Walk Through
</Button>
{InstanceRenderManager({
promanager: (
<Button
onClick={() =>
setJoyRideSteps([
{
target: '#active-jobs-list',
content:
'This is where you will see all work coming in and currently here.',
},
{
target: '#header-jobs',
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-available',
content: 'You can find jobs to import here.',
},
])
}
>
Start Walk Through
</Button>
),
})}
<Button onClick={() => refetch()}>
<SyncOutlined />
</Button>

1797
package-lock.json generated

File diff suppressed because it is too large Load Diff