Skip to content

Commit 4aa1986

Browse files
Merge pull request #330 from Trendyol/new-point
chore: ui improvements
2 parents 94789eb + 5037f33 commit 4aa1986

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gurubu-backend/utils/groomings.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const groomingMode = {
77
id: 1,
88
name: "storyPoint",
99
displayName: "Story Point",
10-
points: ["1", "2", "3", "5", "8", "13", "21", "?", "break"],
10+
points: ["0.5", "1", "2", "3", "5", "8", "13", "21", "?", "break"],
1111
text: "Story point of task",
1212
},
1313
],

gurubu-client/src/app/components/room/grooming-board/consensus-banner.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const ConsensusBanner = () => {
1616

1717
const votes = Object.values(groomingInfo.participants)
1818
.map((p) => p.votes?.storyPoint)
19-
.filter((vote) => vote !== undefined && vote !== "?" && vote !== "");
19+
.filter((vote) => vote !== undefined && vote !== "?" && vote !== "break" && vote !== "");
2020

2121
if (votes.length < 2) return false;
2222

0 commit comments

Comments
 (0)