[SSE] Fix bug 58666
This commit is contained in:
parent
e8ecd37bd6
commit
f6a25870be
|
@ -153,7 +153,7 @@ define([
|
||||||
this._state.withinSheet = value === 0 ? Asc.c_oAscSearchBy.Sheet : (value === 1 ? Asc.c_oAscSearchBy.Workbook : Asc.c_oAscSearchBy.Range);
|
this._state.withinSheet = value === 0 ? Asc.c_oAscSearchBy.Sheet : (value === 1 ? Asc.c_oAscSearchBy.Workbook : Asc.c_oAscSearchBy.Range);
|
||||||
this.view.inputSelectRange.setDisabled(value !== Asc.c_oAscSearchBy.Range);
|
this.view.inputSelectRange.setDisabled(value !== Asc.c_oAscSearchBy.Range);
|
||||||
if (value === Asc.c_oAscSearchBy.Range) {
|
if (value === Asc.c_oAscSearchBy.Range) {
|
||||||
runSearch = false;
|
runSearch = this._state.isValidSelectedRange && !!this._state.selectedRange;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'range':
|
case 'range':
|
||||||
|
|
Loading…
Reference in a new issue