Skip to content

Commit

Permalink
Merged PR 2926: 12836 Capitalizing first letter table quality status …
Browse files Browse the repository at this point in the history
…overview and displaying cursor...

Capitalizing first letter table quality status overview and displaying cursor pointer when hovering on cells
  • Loading branch information
Aleksy Lisowski authored and piotrczarnas committed Aug 17, 2024
2 parents 3ebf060 + c42f18b commit 1839104
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default function TableQualityStatusCategory({
{tableStatus.status && (
<div
className={clsx(
'w-32 h-8 flex justify-end',
'w-32 h-8 flex justify-end cursor-pointer',
getColor(tableStatus.status),
severityType === 'current' ? '' : 'justify-end'
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default function TableQualityStatusColumnCategory({
<div className="w-5 h-full"></div>
<div
className={clsx(
'h-8 w-32 flex justify-end',
'h-8 w-32 flex justify-end cursor-pointer',
getColor(columnStatus.status),
severityType === 'current' ? '' : 'justify-end'
// isExtended && 'w-50'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,9 @@ export default function TableQualityStatusOverview({
// )
// }
>
<div className=" ml-4">{key}</div>
<div className=" ml-4">
{key?.replaceAll('_', ' ').replace(/./, (c) => c.toUpperCase())}
</div>
</th>
))}
</thead>
Expand Down

0 comments on commit 1839104

Please sign in to comment.