Commit ea94f661 authored by wuyongsheng's avatar wuyongsheng

chore: merge

parents b6bf6198 d9f215a3
...@@ -19,6 +19,7 @@ import classNames from "classnames"; ...@@ -19,6 +19,7 @@ import classNames from "classnames";
import Save from "./save"; import Save from "./save";
import NoData from "@/components/BusinessComponents/NoData"; import NoData from "@/components/BusinessComponents/NoData";
import Download from "./download"; import Download from "./download";
import MyTooltip from "@/components/mui/MyTooltip";
import style from "./index.module.css"; import style from "./index.module.css";
type ISeeDatasetProps = { type ISeeDatasetProps = {
...@@ -118,14 +119,14 @@ const SeeDataset = observer((props: ISeeDatasetProps) => { ...@@ -118,14 +119,14 @@ const SeeDataset = observer((props: ISeeDatasetProps) => {
if ( if (
![ ![
"meta", "meta",
"canonical_smiles",
"id", "id",
"mol", // "canonical_smiles",
"mol2", // "mol",
"pdb", // "mol2",
"sdf", // "pdb",
"sdf2d", // "sdf",
"sdf3d", // "sdf2d",
// "sdf3d",
// "smiles", // "smiles",
].includes(item) ].includes(item)
) { ) {
...@@ -327,12 +328,13 @@ const SeeDataset = observer((props: ISeeDatasetProps) => { ...@@ -327,12 +328,13 @@ const SeeDataset = observer((props: ISeeDatasetProps) => {
> >
{key} {key}
</span> </span>
<span <MyTooltip title={item[key]}>
className={style.datasetLiDataLiValue} <span
title={item[key]} className={style.datasetLiDataLiValue}
> >
{item[key]} {item[key]}
</span> </span>
</MyTooltip>
</div> </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