chore: don't restrict token length (#5112)
This commit is contained in:
parent
1b6dd5bd3f
commit
4112fd2a37
1 changed files with 1 additions and 2 deletions
|
|
@ -159,8 +159,7 @@ class HtmlMessage extends StatelessWidget {
|
|||
?.where(
|
||||
(t) =>
|
||||
!["SYM"].contains(t.pos) &&
|
||||
!t.lemma.text.contains(RegExp(r'[0-9]')) &&
|
||||
t.lemma.text.length <= 50,
|
||||
!t.lemma.text.contains(RegExp(r'[0-9]')),
|
||||
)
|
||||
.toList();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue