Skip to content

Commit

Permalink
Merge pull request #554 from AFP-Medialab/assistant/change-icon-urlda
Browse files Browse the repository at this point in the history
changed icon to details list
  • Loading branch information
Sallaa authored Jul 3, 2024
2 parents 3772f19 + de434a4 commit 25e9cfb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
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

0 comments on commit 25e9cfb

Please sign in to comment.