Skip to content

Commit e2b138d

Browse files
authored
fix(styling): refactor Material/Salesforce styling theme (#573)
- make lite and regular file different, the regular file shouldn't call the lite version since that caused other issues
1 parent 77ff43f commit e2b138d

File tree

5 files changed

+782
-751
lines changed

5 files changed

+782
-751
lines changed

src/app/modules/angular-slickgrid/editors/dualInputEditor.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export class DualInputEditor implements Editor {
148148
const idPropName = this.gridOptions.datasetIdPropertyName || 'id';
149149
const itemId = this.args && this.args.item && this.args.item[idPropName] || 0;
150150

151-
let fieldType = editorSideParams.type || 'text';
151+
let fieldType: string = editorSideParams.type || 'text';
152152
if (fieldType === 'float' || fieldType === 'integer') {
153153
fieldType = 'number';
154154
}

0 commit comments

Comments
 (0)