we no longer need all for process statuses w/ cullerton

This commit is contained in:
jasquat 2022-09-23 15:38:31 -04:00
parent 158e36db63
commit 2f71fd0e88
2 changed files with 1 additions and 2 deletions

View File

@ -4,7 +4,6 @@ export const HOST_AND_PORT = `${host}:7000`;
export const BACKEND_BASE_URL = `http://${HOST_AND_PORT}/v1.0`;
export const PROCESS_STATUSES = [
'all',
'not_started',
'user_input_required',
'waiting',

View File

@ -204,7 +204,7 @@ export default function ProcessInstanceList() {
if (endTill) {
queryParamString += `&end_till=${endTill}`;
}
if (processStatusSelection) {
if (processStatusSelection.length > 0) {
const processStatusSelectionString = processStatusSelection.map(
(pss: any) => {
return pss.label;