Skip to content

Commit

Permalink
feat(ui): surface verification messages (akuity#1962)
Browse files Browse the repository at this point in the history
Signed-off-by: Remington Breeze <remington@breeze.software>
  • Loading branch information
rbreeze authored May 6, 2024
1 parent 325618f commit 3a30cf8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ui/src/features/stage/verifications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@ export const Verifications = ({ stage }: Props) => {
}
}}
/>
<Table.Column<(typeof verifications)[number]>
title='Message'
render={(_, verification) => (
<div className='max-w-56 max-h-16 text-wrap overflow-scroll'>
{verification?.message || 'N/A'}
</div>
)}
/>
<Table.Column<(typeof verifications)[number]>
title='Date'
render={(_, verification) => {
Expand Down

0 comments on commit 3a30cf8

Please sign in to comment.