1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-03 16:10:26 +00:00

optimized code struct (#4278)

This commit is contained in:
杨顺强
2019-11-20 17:48:39 +08:00
committed by Daniel Pan
parent 90b2cff58f
commit 4b3050354f
3 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ import React, {Fragment} from 'react';
import PropTypes from 'prop-types';
import { Button, Modal, ModalHeader, ModalBody, ModalFooter, Input, Alert, FormGroup, Label } from 'reactstrap';
import { gettext } from '../../../utils/constants';
import TermsPreviewWidget from '../terms-preview-widget';
import TermsPreviewWidget from '../../terms-preview-widget';
import TermsEditorDialog from '../terms-editor-dialog';
import '../../../css/terms-conditions-editor.css';

View File

@@ -1,7 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import { Modal, ModalHeader, ModalBody } from 'reactstrap';
import TermsPreviewWidget from './terms-preview-widget';
import TermsPreviewWidget from '../terms-preview-widget';
import { gettext } from '../../utils/constants';
const propTypes = {

View File

@@ -1,7 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import { processor } from '@seafile/seafile-editor/dist/utils/seafile-markdown2html';
import Loading from '../loading';
import Loading from './loading';
const propTypes = {
content: PropTypes.string,