|
|
@@ -1,6 +1,7 @@
|
|
|
import React from 'react';
|
|
|
import PropTypes from 'prop-types';
|
|
|
-import EditTagModal from './EditTagModal';
|
|
|
+// TODO GC-1391 activate
|
|
|
+// import EditTagModal from './EditTagModal';
|
|
|
|
|
|
import CopyButton from '../CopyButton';
|
|
|
|
|
|
@@ -83,12 +84,13 @@ export default class RevisionPath extends React.Component {
|
|
|
marginLeft: '0.5em',
|
|
|
padding: '0 2px',
|
|
|
};
|
|
|
- const tagButtonStyle = {
|
|
|
- height: '19px',
|
|
|
- width: '30px',
|
|
|
- marginLeft: '0.5em',
|
|
|
- padding: '0 2px',
|
|
|
- };
|
|
|
+ // TODO GC-1391 activate
|
|
|
+ // const tagButtonStyle = {
|
|
|
+ // height: '19px',
|
|
|
+ // width: '30px',
|
|
|
+ // marginLeft: '0.5em',
|
|
|
+ // padding: '0 2px',
|
|
|
+ // };
|
|
|
|
|
|
const pageLength = this.state.pages.length;
|
|
|
|
|
|
@@ -126,7 +128,12 @@ export default class RevisionPath extends React.Component {
|
|
|
<a href="#edit" className="btn btn-default btn-edit" style={editButtonStyle}>
|
|
|
<i className="icon-note" />
|
|
|
</a>
|
|
|
- <EditTagModal crowi={this.props.crowi} pageId={this.props.pageId} style={tagButtonStyle} sendTagData={this.props.sendTagData} />
|
|
|
+ {/* <EditTagModal
|
|
|
+ crowi={this.props.crowi}
|
|
|
+ pageId={this.props.pageId}
|
|
|
+ style={tagButtonStyle}
|
|
|
+ sendTagData={this.props.sendTagData}
|
|
|
+ /> [TODO] GC-1391 activate */}
|
|
|
</span>
|
|
|
);
|
|
|
}
|