Commit ea94f661 authored by wuyongsheng's avatar wuyongsheng

chore: merge

parents b6bf6198 d9f215a3
......@@ -19,6 +19,7 @@ import classNames from "classnames";
import Save from "./save";
import NoData from "@/components/BusinessComponents/NoData";
import Download from "./download";
import MyTooltip from "@/components/mui/MyTooltip";
import style from "./index.module.css";
type ISeeDatasetProps = {
......@@ -118,14 +119,14 @@ const SeeDataset = observer((props: ISeeDatasetProps) => {
if (
![
"meta",
"canonical_smiles",
"id",
"mol",
"mol2",
"pdb",
"sdf",
"sdf2d",
"sdf3d",
// "canonical_smiles",
// "mol",
// "mol2",
// "pdb",
// "sdf",
// "sdf2d",
// "sdf3d",
// "smiles",
].includes(item)
) {
......@@ -327,12 +328,13 @@ const SeeDataset = observer((props: ISeeDatasetProps) => {
>
{key}
</span>
<MyTooltip title={item[key]}>
<span
className={style.datasetLiDataLiValue}
title={item[key]}
>
{item[key]}
</span>
</MyTooltip>
</div>
);
})}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment