Skip to content

Commit

Permalink
Merge pull request #6238 from tomachalek/fix_merge
Browse files Browse the repository at this point in the history
Fix - invalid variable name (caused by merge)
  • Loading branch information
tomachalek committed Jun 17, 2024
2 parents 2100a35 + 6f0c72c commit 5177530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/files/js/models/concordance/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,7 @@ export class ConcordanceModel extends StatefulModel<ConcordanceModelState> {
private findChunks(state:ConcordanceModelState, ...linkIds:Array<string>):Array<TextChunk> {
for (let i = 0; i < state.lines.length; i += 1) {
for (let j = 0; j < state.lines[i].languages.length; j += 1) {
const ans = pipe(
const chunks = pipe(
linkIds,
List.map(c => ConclineSectionOps.findChunk(state.lines[i].languages[j], c)),
List.filter(v => v !== undefined)
Expand Down

0 comments on commit 5177530

Please sign in to comment.