aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/fields/ChoiceField.js
diff options
context:
space:
mode:
authorEmiliano Ciavatta2020-10-16 12:16:44 +0000
committerEmiliano Ciavatta2020-10-16 12:16:44 +0000
commitd4bac2d6741f7a291522c29c9ecc87c3e32e21d4 (patch)
treefd48e9b0fa10f0a0c72adcc8f0f9709a5af206ee /frontend/src/components/fields/ChoiceField.js
parent2fb8993008752063fa13f253784e9e92552e339d (diff)
Add notification when pcap have been processed
Diffstat (limited to 'frontend/src/components/fields/ChoiceField.js')
-rw-r--r--frontend/src/components/fields/ChoiceField.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/frontend/src/components/fields/ChoiceField.js b/frontend/src/components/fields/ChoiceField.js
index 14071c3..7e97d89 100644
--- a/frontend/src/components/fields/ChoiceField.js
+++ b/frontend/src/components/fields/ChoiceField.js
@@ -15,12 +15,12 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-import React, {Component} from 'react';
-import './ChoiceField.scss';
-import './common.scss';
+import React, {Component} from "react";
import {randomClassName} from "../../utils";
+import "./ChoiceField.scss";
+import "./common.scss";
-const classNames = require('classnames');
+const classNames = require("classnames");
class ChoiceField extends Component {
@@ -67,7 +67,7 @@ class ChoiceField extends Component {
}
return (
- <div className={classNames( "field", "choice-field", {"field-inline" : inline},
+ <div className={classNames("field", "choice-field", {"field-inline": inline},
{"field-small": this.props.small})}>
{!inline && name && <label className="field-name">{name}:</label>}
<div className={classNames("field-select", {"select-expanded": this.state.expanded})}