Skip to content

Commit

Permalink
Fix table view deleting words
Browse files Browse the repository at this point in the history
  • Loading branch information
diogoscf committed Nov 17, 2018
1 parent b274f37 commit b657249
Show file tree
Hide file tree
Showing 2 changed files with 1,136 additions and 1,136 deletions.
2 changes: 1 addition & 1 deletion client/gui/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Table {
toConllu() {

let rows = [];
for (let i=0; i<this.rows; i++) {
for (let i=0; i<=this.rows; i++) {

let row = [];
for (let j=0; j<10; j++) {
Expand Down
Loading

0 comments on commit b657249

Please sign in to comment.