Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed icon to details list #554

Merged
merged 1 commit into from
Jul 3, 2024
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 @@ -10,7 +10,7 @@ import List from "@mui/material/List";
import ListItem from "@mui/material/ListItem";
import ListItemIcon from "@mui/material/ListItemIcon";
import Link from "@mui/material/Link";
import LaunchIcon from "@mui/icons-material/Launch";
import ListAltOutlinedIcon from "@mui/icons-material/ListAltOutlined";
import Typography from "@mui/material/Typography";
import { i18nLoadNamespace } from "components/Shared/Languages/i18nLoadNamespace";
import Accordion from "@mui/material/Accordion";
Expand Down Expand Up @@ -98,7 +98,10 @@ const ExtractedSourceCredibilityDBKFDialog = ({

return (
<div>
<LaunchIcon style={{ cursor: "pointer" }} onClick={handleClickOpen} />
<ListAltOutlinedIcon
style={{ cursor: "pointer" }}
onClick={handleClickOpen}
/>
<Dialog
onClose={handleClose}
maxWidth={"lg"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import List from "@mui/material/List";
import ListItem from "@mui/material/ListItem";
import ListItemIcon from "@mui/material/ListItemIcon";
import Link from "@mui/material/Link";
import LaunchIcon from "@mui/icons-material/Launch";
import ListAltOutlinedIcon from "@mui/icons-material/ListAltOutlined";
import Typography from "@mui/material/Typography";
import { i18nLoadNamespace } from "components/Shared/Languages/i18nLoadNamespace";

Expand All @@ -33,7 +33,10 @@ const SourceCredibilityDBKFDialog = (props) => {

return (
<div>
<LaunchIcon onClick={handleClickOpen} />
<ListAltOutlinedIcon
style={{ cursor: "pointer" }}
onClick={handleClickOpen}
/>
<Dialog onClose={handleClose} maxWidth={"lg"} open={open}>
<DialogTitle>
<Typography>
Expand Down