processes to process models

This commit is contained in:
burnettk 2023-06-19 08:27:06 -04:00
parent a07999ae16
commit a4e0c74430
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,7 @@ With SpiffWorkflow, you can easily initiate a new process instance. Here's a ste
### Step 1: Sign in and navigate to Home section ### Step 1: Sign in and navigate to Home section
The first thing you need to do is sign in to your account on SpiffWorkflow. Once you're signed in, you'll see three tabs in the Home section: In progress, Completed, and Start New. If you want to start a new process, click the "Start New +" button. This will bring up "Processes I can start" section. The first thing you need to do is sign in to your account on SpiffWorkflow. Once you're signed in, you'll see three tabs in the Home section: In progress, Completed, and Start New. If you want to start a new process, click the "Start New +" button. This will bring up "Process Models I can start" section.
![Untitled](images/Untitled_6.png) ![Untitled](images/Untitled_6.png)

View File

@ -212,7 +212,7 @@ export default function NavigationBar() {
isCurrentPage={isActivePage('/admin/process-groups')} isCurrentPage={isActivePage('/admin/process-groups')}
data-qa="header-nav-processes" data-qa="header-nav-processes"
> >
Processes Process Models
</HeaderMenuItem> </HeaderMenuItem>
<HeaderMenuItem <HeaderMenuItem
href="/admin/process-instances" href="/admin/process-instances"

View File

@ -3,7 +3,7 @@ import ProcessModelListTiles from '../components/ProcessModelListTiles';
export default function CreateNewInstance() { export default function CreateNewInstance() {
return ( return (
<ProcessModelListTiles <ProcessModelListTiles
headerElement={<h2>Processes I can start</h2>} headerElement={<h2>Process Models I can start</h2>}
checkPermissions={false} checkPermissions={false}
/> />
); );