diff --git a/src/pages/approval-workflows/[id]/index.tsx b/src/pages/approval-workflows/[id]/index.tsx index a898eeb1..a814cf22 100644 --- a/src/pages/approval-workflows/[id]/index.tsx +++ b/src/pages/approval-workflows/[id]/index.tsx @@ -386,7 +386,7 @@ export default function Home({ user, initialWorkflow, id, workflowAssignees, wor {/* Side panel */} -
+
{isPanelOpen && selectedStep && ( -
+
{currentWorkflow.steps[selectedStepIndex].examChanges?.length ? ( currentWorkflow.steps[selectedStepIndex].examChanges!.map((change, index) => ( -

- {change} -

+ <> +

+ {change.charAt(0)} + {change.slice(1)} +

+
+ )) ) : (

No changes made so far.

@@ -573,7 +577,7 @@ export default function Home({ user, initialWorkflow, id, workflowAssignees, wor value={comments} onChange={(e) => setComments(e.target.value)} placeholder="Input comments here" - className="w-full h-40 p-2 border-2 rounded-xl shadow-lg focus:border-mti-purple focus:outline-none mt-3 resize-none" + className="w-full h-[200px] p-2 border-2 rounded-xl shadow-lg focus:border-mti-purple focus:outline-none mt-3 resize-none" />