diff options
author | Emiliano Ciavatta | 2020-10-16 09:13:21 +0000 |
---|---|---|
committer | Emiliano Ciavatta | 2020-10-16 09:13:21 +0000 |
commit | 2fb8993008752063fa13f253784e9e92552e339d (patch) | |
tree | cf95bee27b217b993008939dd63b83609b0c9796 /frontend/src/components/objects/Connection.js | |
parent | af087d327d065c92d454c4e6391a0040d8d527b9 (diff) |
Refactor js files
Diffstat (limited to 'frontend/src/components/objects/Connection.js')
-rw-r--r-- | frontend/src/components/objects/Connection.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/frontend/src/components/objects/Connection.js b/frontend/src/components/objects/Connection.js index 96f2235..f838606 100644 --- a/frontend/src/components/objects/Connection.js +++ b/frontend/src/components/objects/Connection.js @@ -15,17 +15,17 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -import React, {Component} from 'react'; -import './Connection.scss'; +import React, {Component} from "react"; import {Form} from "react-bootstrap"; import backend from "../../backend"; +import dispatcher from "../../dispatcher"; import {dateTimeToTime, durationBetween, formatSize} from "../../utils"; import ButtonField from "../fields/ButtonField"; -import LinkPopover from "./LinkPopover"; import TextField from "../fields/TextField"; -import dispatcher from "../../dispatcher"; +import "./Connection.scss"; +import LinkPopover from "./LinkPopover"; -const classNames = require('classnames'); +const classNames = require("classnames"); class Connection extends Component { @@ -59,7 +59,7 @@ class Connection extends Component { } if (name === "copy") { this.copyTextarea.current.select(); - document.execCommand('copy'); + document.execCommand("copy"); this.setState({copiedMessage: true}); setTimeout(() => this.setState({copiedMessage: false}), 3000); } |