Skip to content

Commit a47d3ea

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Fixing propName filter.
1 parent 9eb9055 commit a47d3ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/hierarchical-grid/child-grid-row.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ private resolver;
179179
// exclude outputs related to two-way binding functionality
180180
const inputNames = factory.inputs.map(input => input.propName);
181181
const outputs = factory.outputs.filter(o => {
182-
const matchingInputPropName = o.propName.slice(0, o.propName.indexOf('Changed'));
182+
const matchingInputPropName = o.propName.slice(0, o.propName.indexOf('Change'));
183183
return inputNames.indexOf(matchingInputPropName) === -1;
184184
});
185185
outputs.forEach(output => {

0 commit comments

Comments
 (0)