Skip to content

Commit

Permalink
🐛 MTA-1997 partial fix for applications
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Bolton <[email protected]>
  • Loading branch information
ibolton336 committed Mar 29, 2024
1 parent 7f7375a commit 798e4a4
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ export const ApplicationsTable: React.FC = () => {
<Tr>
<TableHeaderContentWithControls {...tableControls}>
{getColumnVisibility("name") && (
<Th {...getThProps({ columnKey: "name" })} width={15} />
<Th {...getThProps({ columnKey: "name" })} width={10} />
)}
{getColumnVisibility("businessService") && (
<Th
Expand All @@ -849,18 +849,18 @@ export const ApplicationsTable: React.FC = () => {
<Th {...getThProps({ columnKey: "assessment" })} width={15} />
)}
{getColumnVisibility("review") && (
<Th {...getThProps({ columnKey: "review" })} width={10} />
<Th {...getThProps({ columnKey: "review" })} width={15} />
)}
{getColumnVisibility("analysis") && (
<Th {...getThProps({ columnKey: "analysis" })} width={10} />
<Th {...getThProps({ columnKey: "analysis" })} width={15} />
)}
{getColumnVisibility("tags") && (
<Th {...getThProps({ columnKey: "tags" })} width={10} />
)}
{getColumnVisibility("effort") && (
<Th {...getThProps({ columnKey: "effort" })} width={10} />
)}
<Th />
<Th width={10} />
</TableHeaderContentWithControls>
</Tr>
</Thead>
Expand Down Expand Up @@ -897,7 +897,7 @@ export const ApplicationsTable: React.FC = () => {
>
{getColumnVisibility("name") && (
<Td
width={15}
width={10}
{...getTdProps({ columnKey: "name" })}
modifier="truncate"
>
Expand Down Expand Up @@ -948,7 +948,7 @@ export const ApplicationsTable: React.FC = () => {
)}
{getColumnVisibility("analysis") && (
<Td
width={10}
width={15}
modifier="truncate"
{...getTdProps({ columnKey: "analysis" })}
>
Expand Down

0 comments on commit 798e4a4

Please sign in to comment.