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
Accessing the current dandiset from the vuex store requires the following:
store.state.dandiset.dandiset.dandiset
Breakdown of what each property means:
store
state
dandiset => the vuex namespace module
dandiset => the variable in the store that is of type `Version`
dandiset => the `Version.dandiset` property
We may want to consider one or both of the following:
Remove the dandiset vuex module and just make everything top level. We have no other modules so this makes sense to me.
Rename the store variable to version.
Applying both of the above would change the previous statement to store.state.version.dandiset.
The text was updated successfully, but these errors were encountered:
Accessing the current dandiset from the vuex store requires the following:
store.state.dandiset.dandiset.dandiset
Breakdown of what each property means:
We may want to consider one or both of the following:
dandiset
vuex module and just make everything top level. We have no other modules so this makes sense to me.version
.Applying both of the above would change the previous statement to
store.state.version.dandiset
.The text was updated successfully, but these errors were encountered: