Merge pull request #9539 from Dharmraj-48/develop

fix(grid): Broken TEXT column
This commit is contained in:
mergify[bot] 2020-02-24 06:38:26 +00:00 committed by GitHub
commit 1973d181e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -670,7 +670,7 @@ export default class Grid {
} else {
var colsize = 2;
switch (df.fieldtype) {
case "Text":
case "Text": break;
case "Small Text": colsize = 3; break;
case "Check": colsize = 1;
}