show model display to the left of the identifier in process model search box w/ burnettk

This commit is contained in:
jasquat 2023-04-12 11:30:25 -04:00
parent 78ea2b255a
commit 9802716f19
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ export default function ProcessModelSearch({
};
const getFullProcessModelLabel = (processModel: ProcessModel) => {
return `${processModel.id} (${getParentGroupsDisplayName(processModel)} ${
return `${getParentGroupsDisplayName(processModel)} / ${
processModel.display_name
})`;
} (${processModel.id})`;
};
const shouldFilterProcessModel = (options: any) => {