You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another bit of state that needs to be considered is isWorking in the login module.
This seems to be some state to indicate that the login module is waiting for a response from the server; however, this seems to be more of a UI concern, if its main intent is to communicate to the user that their request is pending. With promise-based AJAX, it shouldn't be necessary to put this kind of information in state just for the sake of keeping track during the request's execution; a Promise object is itself always in 1 of 3 states: pending, fulfilled, or rejected.
Also, it seems that this state is not purely the concern of the login plugin, since the data plugin accesses it regularly as well too. There is also a duplicate piece of state on the client's main store, also called isWorking
Here are some known issues:
NewObservation.vue
isOnline
?)isOnline
)There is a corresponding issue in
farmOS-client
The text was updated successfully, but these errors were encountered: