Skip to content

Commit

Permalink
Merge branch 'feature/AB#17327' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefwint committed Mar 5, 2024
2 parents d97e99f + c62e374 commit f08d840
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,14 @@ export const StepFour = ({ existingObject, setExistingObject }: StepProps) => {
!!values.validOrModule && values.validOrModule !== 'valid',
select: data =>
data.Objects.map(object => ({
label: object.Title,
label: (
<div className="flex justify-between">
<span>{object.Title}</span>
<span className="capitalize opacity-50">
{object.Object_Type.replace('_', ' ')}
</span>
</div>
),
value: object.UUID,
objectContext: object,
})),
Expand Down

0 comments on commit f08d840

Please sign in to comment.