Skip to content

Commit

Permalink
TableDataEditor.js Updates (#32)
Browse files Browse the repository at this point in the history
* TableDataEditor.js Updates

- Changed allowable number of rows from 12 to 24

* TableDataEditor.js Updates

-  Removed column count limit when adding new columns
  • Loading branch information
jattwood authored Jul 11, 2024
1 parent e3b6662 commit 3d0da0a
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@

vm.addColumn = function () {

if (vm.table.columns.length >= 12) {
return;
}

const column = {};

vm.table.columns.push(column);
Expand Down

0 comments on commit 3d0da0a

Please sign in to comment.