You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
import React from 'react';
|
|
import { translate } from '../../translate/translate';
|
|
import {
|
|
|
|
} from '../../actions/actionCreators';
|
|
import Store from '../../store';
|
|
|
|
class AppSettings extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
//this.closeSyncOnlyModal = this.closeSyncOnlyModal.bind(this);
|
|
}
|
|
|
|
render() {
|
|
/*if (this.props && this.props.SyncOnly.display) {
|
|
return (
|
|
<div>
|
|
<div className="modal show sync-only-forks" aria-hidden="false" role="dialog">
|
|
<div className="modal-dialog modal-center modal-lg">
|
|
<div className="modal-content">
|
|
<div className="modal-body" style={{height: '590px'}}>
|
|
{this.renderForksList()}
|
|
</div>
|
|
<div className="modal-footer">
|
|
<button type="button" className="btn btn-default" onClick={this.closeSyncOnlyModal}>Close</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="modal-backdrop show in"></div>
|
|
</div>
|
|
);
|
|
} else {
|
|
return null;
|
|
}*/
|
|
}
|
|
}
|
|
|
|
export default AppSettings;
|