mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 12:43:54 -06:00
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
Block a user