Commit e7ae075 1 parent 613efdf commit e7ae075 Copy full SHA for e7ae075
File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
6
6
7
+ ## [ Unreleased]
8
+ ### Fixed
9
+ - Data Grid displaying column for Hidden field
10
+
7
11
### 3.0.0
8
12
#### Breaking Changes
9
13
- Changed the overrall structure of the library and how "imports" work to make them more structured.
Original file line number Diff line number Diff line change @@ -254,6 +254,7 @@ export default class DataGridComponent extends NestedComponent {
254
254
_ . each ( this . rows , ( comps ) => {
255
255
showColumn |= comps [ col . key ] . checkConditions ( data ) ;
256
256
} ) ;
257
+ showColumn = showColumn && col . type !== 'hidden' && ! col . hidden ;
257
258
if (
258
259
( this . visibleColumns [ col . key ] && ! showColumn ) ||
259
260
( ! this . visibleColumns [ col . key ] && showColumn )
You can’t perform that action at this time.
0 commit comments