Revert "processes to process models"

This reverts commit 294eff7873.
This commit is contained in:
burnettk 2023-06-19 09:08:46 -04:00
parent 294eff7873
commit ecf0a423be
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
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.
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.
![Untitled](images/Untitled_6.png)

View File

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

View File

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