mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: removed extra spaces form estimate points brackets (#837)
This commit is contained in:
parent
363c5c8ec4
commit
5a36a7931f
@ -152,14 +152,16 @@ export const SingleEstimate: React.FC<Props> = ({
|
||||
</CustomMenu>
|
||||
</div>
|
||||
{estimatePoints && estimatePoints.length > 0 ? (
|
||||
<div className="flex gap-2 text-sm text-gray-400">
|
||||
Estimate points(
|
||||
<div className="flex text-sm text-gray-400">
|
||||
Estimate points (
|
||||
<span className="flex gap-1">
|
||||
{estimatePoints.map((point, index) => (
|
||||
<h6 key={point.id}>
|
||||
{point.value}
|
||||
{index !== estimatePoints.length - 1 && ","}{" "}
|
||||
</h6>
|
||||
))}
|
||||
</span>
|
||||
)
|
||||
</div>
|
||||
) : (
|
||||
|
Loading…
Reference in New Issue
Block a user