summaryrefslogtreecommitdiffstats
path: root/frontend/pages/admin
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-04-05 13:54:22 -0400
committerWes Bos <wesbos@gmail.com>2018-04-05 13:54:22 -0400
commitf4f10d5eb690a33dd1c112358457a2b987297f26 (patch)
treed97326763dd016c13a068fb7dee40fc0b9667f83 /frontend/pages/admin
parenta75b2491758a451283e2a373bb3fbe886520b345 (diff)
work
Diffstat (limited to 'frontend/pages/admin')
-rw-r--r--frontend/pages/admin/update.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/frontend/pages/admin/update.js b/frontend/pages/admin/update.js
index 2731f05..2f445d7 100644
--- a/frontend/pages/admin/update.js
+++ b/frontend/pages/admin/update.js
@@ -2,12 +2,15 @@ import { Component } from 'react';
import withData from '../../lib/withData';
import UpdateItem from '../../components/UpdateItem';
import Page from '../../components/Page';
+import PleaseSignIn from '../../components/PleaseSignIn';
class Home extends Component {
render() {
return (
<Page>
- <UpdateItem id={this.props.url.query.id} />
+ <PleaseSignIn>
+ <UpdateItem id={this.props.url.query.id} />
+ </PleaseSignIn>
</Page>
);
}