aboutsummaryrefslogtreecommitdiffstats
path: root/graphgraph-fe/src/graph_hops.js
diff options
context:
space:
mode:
Diffstat (limited to 'graphgraph-fe/src/graph_hops.js')
-rw-r--r--graphgraph-fe/src/graph_hops.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphgraph-fe/src/graph_hops.js b/graphgraph-fe/src/graph_hops.js
index da98db2..92b8e40 100644
--- a/graphgraph-fe/src/graph_hops.js
+++ b/graphgraph-fe/src/graph_hops.js
@@ -19,14 +19,14 @@
*/
import React from 'react';
-import { Label } from 'react-bootstrap';
-import NumericInput from 'react-numeric-input';
+import { FormLabel } from 'react-bootstrap';
+import NumericInput from 'react-numeric-input2';
import './graph_hops.css';
var createNumInput = function (label, callback, current) {
return (
<div>
- <Label>{label}</Label>
+ <FormLabel>{label}</FormLabel>
<NumericInput onChange={callback} min={1} max={500} value={current} className="hops-input-field"/>
</div>
);