Always default to all queue

This commit is contained in:
Chi Vinh Le
2017-06-20 20:00:00 +07:00
parent 23fcba4ccc
commit 4d53a72767
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ const routes = (
<Route path=':id' components={Moderation} />
</Route>
<Route path=':id' components={Moderation} />
<IndexRedirect to='premod' />
<IndexRedirect to='all' />
</Route>
</Route>
</div>
@@ -41,7 +41,7 @@ class StorySearchContainer extends React.Component {
goToStory = (id) => {
const {router, closeSearch} = this.props;
router.push(`/admin/moderate/${id}`);
router.push(`/admin/moderate/all/${id}`);
closeSearch();
}