Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
blah
  • Loading branch information
mr-martian committed Jul 10, 2024
commit 4efea882a5ade16e9c16b694b887069cd2138cd9
2 changes: 1 addition & 1 deletion src/components/Analyzer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const AnalysisResult = ({
const matches = unit.match(unitRegex);

if (matches && matches.length > 2) {
matches.filter((m) => m.length > 0).forEach((match, n) => {
matches.filter((m) => m.length > 0).forEach((match, n) => {
const width = 30 * n;
morphemes.push(
<div key={`joined-${i}-${n}`} style={{ marginLeft: `${width}px` }}>
Expand Down