diff --git a/frontend/scenes/Document/Document.js b/frontend/scenes/Document/Document.js index be75d6dfc..a9389c3ef 100644 --- a/frontend/scenes/Document/Document.js +++ b/frontend/scenes/Document/Document.js @@ -129,6 +129,7 @@ type Props = { {titleText && } + {this.store.isFetching ? @@ -152,6 +153,9 @@ type Props = { onChange={this.store.updateText} onSave={this.onSave} onCancel={this.onCancel} + onStar={this.store.starDocument} + onUnstar={this.store.unstarDocument} + starred={this.store.document.starred} readOnly={!isEditing} /> } diff --git a/server/migrations/20170601032359-add-views.js b/server/migrations/20170604052346-add-views.js similarity index 100% rename from server/migrations/20170601032359-add-views.js rename to server/migrations/20170604052346-add-views.js