Skip to content

Commit 30c597f

Browse files
committed
chore(Grid): remove warn from assignTypes
There was a warning when defaulting to using "string" as a type for a column. It was causing more confusion than the help it was providing so it's been removed. Closes #3662
1 parent 0ef31ac commit 30c597f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/js/core/factories/Grid.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,6 @@ angular.module('ui.grid')
726726
colDef.type = gridUtil.guessType(self.getCellValue(firstRow, col));
727727
}
728728
else {
729-
gridUtil.logWarn('Unable to assign type from data, so defaulting to string');
730729
colDef.type = 'string';
731730
}
732731
}

0 commit comments

Comments
 (0)