Skip to content

Commit 634e475

Browse files
author
Hristo Popov
authored
Merge branch '10.2.x' into dTsvetkov/fix-issue-8320-master
2 parents e7aed5c + 4231dd4 commit 634e475

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

angular.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@
9090
"browserTarget": "igniteui-dev-demos:build:hmr"
9191
},
9292
"es5": {
93+
"hmr": true,
94+
"hmrWarning": false,
9395
"browserTarget": "igniteui-dev-demos:build:es5"
9496
}
9597
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve --open --configuration hmr",
7-
"start-es5": "ng serve --configuration es5 -o",
7+
"start:es5": "ng serve --open --configuration es5",
88
"build": "ng build",
99
"test": "ng test",
1010
"lint": "ng lint",

projects/igniteui-angular/src/lib/grids/row.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export class IgxRowDirective<T extends IgxGridBaseDirective & GridType> implemen
113113
}
114114

115115
get cellHeight() {
116-
return this.addRow ? null : this.grid.rowHeight || 32;
116+
return this.addRow && !this.inEditMode ? null : this.grid.rowHeight || 32;
117117
}
118118

119119
/**

src/polyfills.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
2222
import 'classlist.js'; // Run `npm install --save classlist.js`.
2323

24+
import 'core-js/es7/array'; // for Array.includes()
25+
2426
/**
2527
* Web Animations `@angular/platform-browser/animations`
2628
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.

src/styles/igniteui-theme.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ body {
1818
}
1919

2020
@include igx-core($direction: ltr);
21-
@include igx-theme($palette: $palette, $schema: $schema);
21+
@include igx-theme($palette: $palette, $schema: $schema, $legacy-support: true);
2222
@include igx-typography($type-scale: $typography);
2323

2424
@include igx-palette-vars($palette, $contrast: true);

0 commit comments

Comments
 (0)