Link sidebar directly to entry document
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
// @flow
|
||||
import { extendObservable, action, runInAction } from 'mobx';
|
||||
import { extendObservable, action, computed, runInAction } from 'mobx';
|
||||
import invariant from 'invariant';
|
||||
import _ from 'lodash';
|
||||
|
||||
@ -21,6 +21,12 @@ class Collection {
|
||||
client: ApiClient;
|
||||
errors: ErrorsStore;
|
||||
|
||||
/* Computed */
|
||||
|
||||
@computed get entryUrl(): string {
|
||||
return this.type === 'atlas' ? this.documents[0].url : this.url;
|
||||
}
|
||||
|
||||
/* Actions */
|
||||
|
||||
@action update = async () => {
|
||||
|
Reference in New Issue
Block a user