Skip to content

Commit

Permalink
Add initial phrases functionality
Browse files Browse the repository at this point in the history
- Improve tokenization
  • Loading branch information
artialex committed Jul 6, 2024
1 parent 103645e commit eeee594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TokenView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const TokenView = observer(({ token }: { token: TokenStore }) => {
'mark has-note': token.term?.notes && !token.term?.notes?.startsWith('*'),
'mark exclamation': token.term?.notes?.startsWith('!'),
'mark question': token.term?.notes?.startsWith('?'),
'border-b-2 border-red-400': token.token?.tags?.includes('Phrase'),
'border-b-2 !border-red-400': token.token?.tags?.includes('Phrase'),
});

return (
Expand Down

0 comments on commit eeee594

Please sign in to comment.