Skip to content

Commit

Permalink
initial poc
Browse files Browse the repository at this point in the history
  • Loading branch information
rschlaefli committed May 25, 2023
1 parent b6deca5 commit 5c5f893
Show file tree
Hide file tree
Showing 3 changed files with 232 additions and 172 deletions.
3 changes: 2 additions & 1 deletion apps/frontend-manage/src/components/evaluation/Wordcloud.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ function Wordcloud({
).map((result) => {
return {
count: result.count,
value: result.value,
// value: <Markdown content={result.value} />,
value: (result.value ?? '').replace(/[^a-zA-Z \n]/g, ''),
}
})
}, [data])
Expand Down

0 comments on commit 5c5f893

Please sign in to comment.