diff --git a/src/components/CippComponents/CippCentralSearch.jsx b/src/components/CippComponents/CippCentralSearch.jsx index c710a8d2d49b..6a90c4e35b9d 100644 --- a/src/components/CippComponents/CippCentralSearch.jsx +++ b/src/components/CippComponents/CippCentralSearch.jsx @@ -9,6 +9,7 @@ import { Grid, Card, CardContent, + CardActionArea, Typography, Box, } from "@mui/material"; @@ -107,15 +108,19 @@ export const CippCentralSearch = ({ handleClose, open }) => { handleCardClick(item.path)} + sx={{ height: "100%" }} > - - {highlightMatch(item.title)} - - Path: {highlightMatch(item.path)} - - + handleCardClick(item.path)} + aria-label={`Navigate to ${item.title}`} + > + + {highlightMatch(item.title)} + + Path: {highlightMatch(item.path)} + + + ))}