mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Bug fix
This commit is contained in:
parent
69e6006436
commit
0dee4df8fb
@ -154,7 +154,7 @@ $.fn.inventreeTable = function(options) {
|
|||||||
// Which columns are currently visible?
|
// Which columns are currently visible?
|
||||||
var visible = table.bootstrapTable('getVisibleColumns');
|
var visible = table.bootstrapTable('getVisibleColumns');
|
||||||
|
|
||||||
if (visible && isArray(visible)) {
|
if (visible && Array.isArray(visible)) {
|
||||||
visible.forEach(function(column) {
|
visible.forEach(function(column) {
|
||||||
|
|
||||||
// Visible field should *not* be visible! (hide it!)
|
// Visible field should *not* be visible! (hide it!)
|
||||||
|
Loading…
Reference in New Issue
Block a user