Browse Source

qna 사용자 목록 제목 ellipsis 적용

pull/2/head
김장현 11 months ago
parent
commit
fba7afaf67
  1. 12
      src/components/cstmrService/inquiry/QnaGrid.js

12
src/components/cstmrService/inquiry/QnaGrid.js

@ -13,7 +13,17 @@ export default function QnaGrid({ lists, handlerDetailModal }) {
id: 'title',
name: '제목',
minWidth: '300px',
cell: (row, i) => <div>{row.title}</div>
cell: (row, i) => (
<div
style={{
textOverflow: 'ellipsis',
overflow: 'hidden',
whiteSpace: 'nowrap'
}}
>
{row.title}
</div>
)
},
{
id: 'category',

Loading…
Cancel
Save