Fix merge conflict fallout. Remove stale edit click handler.

This commit is contained in:
mabashian
2019-10-28 15:08:27 -04:00
parent e0d8d35090
commit 9af3fa557b

View File

@@ -11,10 +11,6 @@ import { t } from '@lingui/macro';
import { Link } from 'react-router-dom'; import { Link } from 'react-router-dom';
import { PencilAltIcon, SyncIcon } from '@patternfly/react-icons'; import { PencilAltIcon, SyncIcon } from '@patternfly/react-icons';
import { Link as _Link } from 'react-router-dom';
import { SyncIcon } from '@patternfly/react-icons';
import styled from 'styled-components';
import ActionButtonCell from '@components/ActionButtonCell'; import ActionButtonCell from '@components/ActionButtonCell';
import ClipboardCopyButton from '@components/ClipboardCopyButton'; import ClipboardCopyButton from '@components/ClipboardCopyButton';
import DataListCell from '@components/DataListCell'; import DataListCell from '@components/DataListCell';
@@ -59,11 +55,6 @@ class ProjectListItem extends React.Component {
); );
}; };
handleEditClick = project => {
const { history } = this.props;
history.push(`/projects/${project.id}/edit`);
};
render() { render() {
const { project, isSelected, onSelect, detailUrl, i18n } = this.props; const { project, isSelected, onSelect, detailUrl, i18n } = this.props;
const labelId = `check-action-${project.id}`; const labelId = `check-action-${project.id}`;