fix CSV import asking for cols that were removed

This commit is contained in:
2018-08-11 18:59:09 +02:00
parent bc960e80aa
commit 2cadbdcd31
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ class TableEditController extends Controller
return view('table.propose.add-rows-csv', [
'changeset' => $changeset,
'table' => $changeset->table,
'columns' => collect($columns),
'columns' => collect($columns)->where('toRemove', false),
]);
}