Skip to content

Commit

Permalink
Update nvd image from URL to placing in assets folder
Browse files Browse the repository at this point in the history
  • Loading branch information
ameliav committed Aug 28, 2024
1 parent 75c1c25 commit ac7ae3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file added frontend/src/assets/nvd.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion frontend/src/pages/Vulnerability/CveSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import {
Cpe as ProductInfoType,
Vulnerability as VulnerabilityType
} from 'types';
import nvd from '../../assets/nvd.jpeg';

interface GroupedByVendor {
[key: string]: ProductInfoType[];
Expand Down Expand Up @@ -70,7 +71,7 @@ export const CveSection: React.FC<HasCVEProps> = ({
component="img"
sx={{ height: 25, width: 30 }}
alt="NVD"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ5dvAqUgpcwQXcfmDxrMry2Z6mj8FAckqcjpbHupW7ReLf_DuyhR8_jIYcr8hs38yDorw&usqp=CAU"
src={nvd}
/>
<Typography
display="inline"
Expand Down

0 comments on commit ac7ae3c

Please sign in to comment.