Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,11 @@ export const VulnerabilitiesByAdvisory: React.FC<
item={item}
rowIndex={rowIndex}
>
<Td width={15} {...getTdProps({ columnKey: "identifier" })}>
<Td
width={15}
modifier="breakWord"
{...getTdProps({ columnKey: "identifier" })}
>
<Link to={`/vulnerabilities/${item.identifier}`}>
{item.identifier}
</Link>
Expand Down
1 change: 1 addition & 0 deletions client/src/app/pages/advisory-list/advisory-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ export const AdvisoryTable: React.FC = () => {
>
<Td
width={15}
modifier="breakWord"
{...getTdProps({
columnKey: "identifier",
isCompoundExpandToggle: true,
Expand Down
6 changes: 5 additions & 1 deletion client/src/app/pages/package-details/sboms-by-package.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,11 @@ export const SbomsByPackage: React.FC<SbomsByPackageProps> = ({ purl }) => {
return (
<Tbody key={item.id}>
<Tr {...getTrProps({ item })}>
<Td width={35} {...getTdProps({ columnKey: "name" })}>
<Td
width={35}
modifier="breakWord"
{...getTdProps({ columnKey: "name" })}
>
<Link to={`/sboms/${item.id}`}>{item.name}</Link>
</Td>
<Td
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,11 @@ export const VulnerabilitiesByPackage: React.FC<
item={item}
rowIndex={rowIndex}
>
<Td width={15} {...getTdProps({ columnKey: "identifier" })}>
<Td
width={15}
modifier="breakWord"
{...getTdProps({ columnKey: "identifier" })}
>
<Link
to={`/vulnerabilities/${item.vulnerability.identifier}`}
>
Expand Down
6 changes: 5 additions & 1 deletion client/src/app/pages/package-list/package-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ export const PackageTable: React.FC = () => {
item={item}
rowIndex={rowIndex}
>
<Td width={15} {...getTdProps({ columnKey: "name" })}>
<Td
width={15}
modifier="breakWord"
{...getTdProps({ columnKey: "name" })}
>
<NavLink to={`/packages/${item.uuid}`}>
{item.decomposedPurl
? item.decomposedPurl?.name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,11 @@ export const VulnerabilitiesBySbom: React.FC<VulnerabilitiesBySbomProps> = ({
item={item}
rowIndex={rowIndex}
>
<Td width={15} {...getTdProps({ columnKey: "id" })}>
<Td
width={15}
modifier="breakWord"
{...getTdProps({ columnKey: "id" })}
>
<Link
to={`/vulnerabilities/${item.vulnerability.identifier}`}
>
Expand Down
1 change: 1 addition & 0 deletions client/src/app/pages/sbom-list/sbom-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ export const SbomTable: React.FC = () => {
>
<Td
width={25}
modifier="breakWord"
{...getTdProps({
columnKey: "name",
isCompoundExpandToggle: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ export const AdvisoriesByVulnerability: React.FC<
{currentPageItems?.map((item) => {
return (
<Tr key={item.identifier} {...getTrProps({ item })}>
<Td width={15} {...getTdProps({ columnKey: "identifier" })}>
<Td
width={15}
modifier="breakWord"
{...getTdProps({ columnKey: "identifier" })}
>
<Link to={`/advisories/${item.uuid}`}>
{item.document_id}
</Link>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,11 @@ export const SbomsByVulnerability: React.FC<SbomsByVulnerabilityProps> = ({
item={item}
rowIndex={rowIndex}
>
<Td width={25} {...getTdProps({ columnKey: "name" })}>
<Td
width={25}
modifier="breakWord"
{...getTdProps({ columnKey: "name" })}
>
<Link to={`/sboms/${item.sbom.id}`}>
{item?.sbom?.name}
</Link>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export const VulnerabilityTable: React.FC = () => {
>
<Td
width={15}
modifier="breakWord"
{...getTdProps({
columnKey: "identifier",
item: item,
Expand Down
Loading