Commit e6f8cecb authored by chenshouchao's avatar chenshouchao

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

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