FIX: `this.loading` is undefined, it should be `state.loading` (#12707)
This might prevent issues with double requests on the user notifications panel.
This commit is contained in:
parent
c1fc2a1e9b
commit
e459937ffa
|
@ -79,7 +79,7 @@ export default createWidget("quick-access-panel", {
|
|||
},
|
||||
|
||||
refreshNotifications(state) {
|
||||
if (this.loading) {
|
||||
if (state.loading) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue