summaryrefslogtreecommitdiff
path: root/frontend/views/index/components/graph.form.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-06-02 17:38:14 +0200
committerJules Laplace <julescarbon@gmail.com>2020-06-02 17:38:14 +0200
commitf6d7fcbb50ef57f1f7d7ca8cacd711ffd576e600 (patch)
tree9d6a4882d428da7098c4244f5ca56267afe8cc1b /frontend/views/index/components/graph.form.js
parent5b480258322682fdc4fa987770df9e719315f167 (diff)
showing pages for graph. getting urls right
Diffstat (limited to 'frontend/views/index/components/graph.form.js')
-rw-r--r--frontend/views/index/components/graph.form.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/views/index/components/graph.form.js b/frontend/views/index/components/graph.form.js
index a6a0dd6..50f9773 100644
--- a/frontend/views/index/components/graph.form.js
+++ b/frontend/views/index/components/graph.form.js
@@ -22,7 +22,7 @@ export default class GraphForm extends Component {
componentDidMount() {
const { data, isNew } = this.props
- const title = isNew ? 'new graph' : 'editing ' + data.title
+ const title = isNew ? 'new project' : 'editing ' + data.title
const submitTitle = isNew ? "Create Graph" : "Save Changes"
this.setState({
title,