nice stuff

This commit is contained in:
1ilit
2023-09-19 15:48:51 +03:00
parent 25926cb9b8
commit 2a04f651d3
3 changed files with 9 additions and 25 deletions

View File

@@ -92,11 +92,11 @@ export default function Table(props) {
<Popover
content={
<div className="text-slate-600">
<p>
<p className="mb-2">
<strong>Comment :</strong>{" "}
{props.tableData.comment === ""
? "No comment"
: props.tableData.comment}
: <div>{props.tableData.comment}</div>}
</p>
<p className="text-slate-600">
<strong
@@ -133,6 +133,7 @@ export default function Table(props) {
position="rightTop"
showArrow
trigger="click"
style={{width: "200px"}}
>
<Button
icon={<IconMore />}