Fixed incorrect order param comparison in force reload

refs ffe0f84700 (diff-c3579ffd0159c4bd6d54ac943074cb5f5fa40ea6c814f85f2e90aee694d77c2dR266)

The `forceReload` option to bypass the stale data if params change was incorrectly comparing order param changes due to a typo in variable used to store last order param changes.
This commit is contained in:
Rishabh 2021-08-04 12:30:05 +05:30 committed by Rishabh Garg
parent 548e8db090
commit 4a5d8d07dc

View File

@ -297,7 +297,7 @@ export default class MembersController extends Controller {
|| label !== this._lastLabel
|| paidParam !== this._lastPaidParam
|| searchParam !== this._lastSearchParam
|| orderParam !== this._orderParam
|| orderParam !== this._lastOrderParam
|| filterParam !== this._lastFilterParam;
this._lastLabel = label;
this._lastPaidParam = paidParam;