Client Bug fixes
Fixes the following:
- When creating a new submission/review/decision form, the "Make this the active form" button has been removed. Clicking on this when the new form had not been submitted would cause an error
- Logging out from
/<groupName>/profile
would yield a "Not Authorised!" error. This is due toclient.resetStore()
refreshing active queries, and theuser
query needs to be authenticated in permissions. This was replaced with a similarclient.clearStore()
, which does not refresh queries, and an explicit redirect to/login
was added after logging out.