mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
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:
parent
548e8db090
commit
4a5d8d07dc
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user