Skip to content

Commit

Permalink
listing: show system columns on right pane (Closes #1625)
Browse files Browse the repository at this point in the history
  • Loading branch information
wellingguzman committed Jul 3, 2017
1 parent 15c7056 commit ce62ec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/modules/tables/views/TableViewRightPane.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ define([

data.columns = structure.chain()
.filter(function(model) {
return !model.get('system') && !model.get('hidden_list') && !model.get('hidden_input');
return !model.get('hidden_list') && !model.get('hidden_input');
})
.map(function(model) {
var sort, isVisible;
Expand Down

0 comments on commit ce62ec3

Please sign in to comment.