We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d0b3d3 commit f7bf4d4Copy full SHA for f7bf4d4
1 file changed
src/workers/candidateReviewOpportunitySlack.ts
@@ -89,7 +89,7 @@ const worker: TypedWorker<'gondul.v1.candidate-application-scored'> = {
89
fields: [
90
{
91
type: 'mrkdwn',
92
- text: `*Application Score:*\n${applicationScore != null ? `${Math.round(applicationScore)}%` : 'N/A'}`,
+ text: `*Application Score:*\n${applicationScore != null ? `${applicationScore.toFixed(1)}` : 'N/A'}`,
93
},
94
95
@@ -123,7 +123,7 @@ const worker: TypedWorker<'gondul.v1.candidate-application-scored'> = {
123
type: 'section' as const,
124
text: {
125
type: 'mrkdwn' as const,
126
- text: `*Application Summary:*\n${truncateText(description)}`,
+ text: `*Application Summary:*\n${description}`,
127
128
129
]
0 commit comments