Skip to content

Commit

Permalink
Merge pull request #6002 from tomachalek/fix_conc_saving_m
Browse files Browse the repository at this point in the history
Fix conc saving (missing concSize update)
  • Loading branch information
tomachalek authored Aug 23, 2023
2 parents 29efc5a + d086ef2 commit 36ab625
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions public/files/js/models/concordance/save.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ export class ConcSaveModel extends StatefulModel<ConcSaveModelState> {
action => {
this.changeState(state => {
state.toLine.value = `${action.payload.concsize}`;
state.concSize = action.payload.concsize;
});
}
);
Expand Down

0 comments on commit 36ab625

Please sign in to comment.