diff --git a/products/ASC.Files/Client/src/components/panels/OperationsDialog/index.js b/products/ASC.Files/Client/src/components/panels/OperationsDialog/index.js index a6f2dc07b5..da4872e3c7 100644 --- a/products/ASC.Files/Client/src/components/panels/OperationsDialog/index.js +++ b/products/ASC.Files/Client/src/components/panels/OperationsDialog/index.js @@ -9,10 +9,17 @@ import ModalDialog from "@appserver/components/modal-dialog"; import { StyledAsidePanel } from "../StyledPanels"; import { useTranslation, withTranslation } from "react-i18next"; import FileInputWithFolderPath from "@appserver/components/file-input-with-folder-path"; +import styled from "styled-components"; const { auth: authStore } = store; let path = ""; + +const StyledComponent = styled.div` + .input-with-folder-path { + margin-top: 16px; + } +`; class OperationsDialog extends React.PureComponent { constructor(props) { super(props); @@ -115,12 +122,12 @@ class OperationsDialog extends React.PureComponent { //console.log("folderList ", folderList); return ( - <> + )} - + ); } }