Fixed schema diff issue when selecting any identical node.
parent
b0af385ea0
commit
ae18b9a0ac
|
@ -12,7 +12,8 @@ function handleDependencies() {
|
||||||
let isChecked = event.target.checked || (event.target.checked === undefined &&
|
let isChecked = event.target.checked || (event.target.checked === undefined &&
|
||||||
event.target.className && event.target.className.indexOf('unchecked') == -1);
|
event.target.className && event.target.className.indexOf('unchecked') == -1);
|
||||||
|
|
||||||
let isHeaderSelected = event.target.id.includes('header-selector');
|
let isHeaderSelected = false;
|
||||||
|
if (event.target.id !== undefined) isHeaderSelected = event.target.id.includes('header-selector');
|
||||||
|
|
||||||
if (this.gridContext && this.gridContext.rowIndex && _.isUndefined(this.gridContext.row.rows)) {
|
if (this.gridContext && this.gridContext.rowIndex && _.isUndefined(this.gridContext.row.rows)) {
|
||||||
// Single Row Selection
|
// Single Row Selection
|
||||||
|
|
Loading…
Reference in New Issue