From c5252f8a2b6f0a895e8da5e68b036ef83e4ef7a5 Mon Sep 17 00:00:00 2001 From: Jamie Attwood Date: Thu, 11 Jul 2024 18:01:34 -0400 Subject: [PATCH] TableDataEditor.js Updates (#33) * TableDataEditor.js Updates - Changed column limit from 12 to 24 * TableDataEditor.js Updates - Removed column count limit when adding new columns --- .../wwwroot/Scripts/Controllers/TableDataEditor.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Limbo.Umbraco.Tables/wwwroot/Scripts/Controllers/TableDataEditor.js b/src/Limbo.Umbraco.Tables/wwwroot/Scripts/Controllers/TableDataEditor.js index 8eadd83..8421c48 100644 --- a/src/Limbo.Umbraco.Tables/wwwroot/Scripts/Controllers/TableDataEditor.js +++ b/src/Limbo.Umbraco.Tables/wwwroot/Scripts/Controllers/TableDataEditor.js @@ -25,10 +25,6 @@ vm.addColumn = function () { - if (vm.table.columns.length >= 12) { - return; - } - const column = {}; vm.table.columns.push(column);