Skip to content

Commit 4be9611

Browse files
committed
Drop first verb word.
1 parent 070e1a2 commit 4be9611

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/routes/org/[orgid]/processes/+page.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,7 @@
298298
process.title
299299
.toLowerCase()
300300
.split(/\W+/)
301+
.slice(1) // Skip the first word, which is usually a verb, and not revealing of the topic
301302
.filter((w) => w.length > 3 && !StopWords.includes(w))
302303
.toSorted()
303304
)

0 commit comments

Comments
 (0)