Browse Source

나의그룹 상세보기 필터 제거

pull/2/head
junh_eee(이준희) 2 years ago
parent
commit
55c76b66d4
  1. 15
      src/containers/basis/group/BasisGroupContainer.js

15
src/containers/basis/group/BasisGroupContainer.js

@ -65,11 +65,24 @@ export const BasisGroupContainer = props => {
// minWidth: '102px', // minWidth: '102px',
sortable: true, sortable: true,
cell: row => { cell: row => {
return <Link to={`/basis/group/detail/${row.groupId}`}>상세보기</Link>; // return <Link to={`/basis/group/detail/${row.groupId}`}>상세보기</Link>;
return (
<Button.Ripple
color='primary'
className='badge badge-primary'
onClick={() => handleDetail(row.groupId)}
>
상세보기
</Button.Ripple>
);
} }
} }
]; ];
const handleDetail = groupId => {
history.push(`/basis/group/detail/${groupId}`);
};
const joinColumns = [ const joinColumns = [
{ {
name: '그룹명', name: '그룹명',

Loading…
Cancel
Save