@@ -30,7 +30,7 @@ function TableLaporan({ listData, to, linkName, status = false, noBy = false })
<div className="media-body d-flex">
<div>
<h4 className="m-0">{data.pt.nama}</h4>
- <p>{data.description.length > 45 ? data.description.substring(0, 45) + "..." : data.description}</p>
+ <p>{data.description.length > 35 ? data.description.substring(0, 35) + "..." : data.description}</p>
</div>
@@ -30,7 +30,7 @@ function TableSanksi({ listData, to, linkName }) {
- <p>{data.description.length > 30 ? data.description.substring(0, 30) + "..." : data.description}</p>
+ <p>{data.description.length > 25 ? data.description.substring(0, 25) + "..." : data.description}</p>
@@ -27,7 +27,7 @@ function TableSanksi({ listData, to, linkName }) {
{/* <small className="text-muted">0742/O/1990 - www.satyagama.ac.id - info@satyagama.ac.id</small> */}
- <p>{data.sanksi.description}</p>
+ <p>{data.sanksi.description.length > 70 ? data.sanksi.description.substring(0, 70) + "..." : data.sanksi.description}</p>
@@ -25,7 +25,7 @@ function TableSanksi({ listData, to, linkName }) {
@@ -29,7 +29,7 @@ function TableLaporan({ listData }) {