subject area overview

This commit is contained in:
1ilit
2023-09-19 15:48:55 +03:00
parent ce92a35c9f
commit 8da14317e5
6 changed files with 295 additions and 63 deletions

View File

@@ -132,15 +132,15 @@ export default function Table(props) {
<Popover
content={
<div className="text-slate-600">
<p className="mb-2">
<div className="mb-2">
<strong>Comment :</strong>{" "}
{props.tableData.comment === "" ? (
"No comment"
) : (
<div>{props.tableData.comment}</div>
)}
</p>
<p className="text-slate-600">
</div>
<div className="text-slate-600">
<strong
className={`${
props.tableData.indices.length === 0 ? "" : "block"
@@ -169,7 +169,7 @@ export default function Table(props) {
))}
</div>
)}
</p>
</div>
</div>
}
position="rightTop"