Commit 4827d395 authored by chenshouchao's avatar chenshouchao

Merge branch 'feat-20220908-dataset' into 'release'

在分子卡片模式下,删除2D/3D图像下面的smiles展示

See merge request !103
parents c53470a3 e6f8cecb
......@@ -81,6 +81,10 @@ const DatasetCardTable = (props: IDatasetCardTableProps) => {
{Object.keys(item)
.filter((key) => showData.indexOf(key) !== -1)
.map((key, index) => {
// 在分子卡片模式下,删除2D/3D图像下面的smiles展示。
if (key === "smiles") {
return null;
}
return (
<div
className={style.datasetLiDataLi}
......
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