조회조건 value 버그 수정
This commit is contained in:
@@ -27,11 +27,11 @@ const ViewTableInfo = ({children, total, total_all, handleOrderBy, handlePageSiz
|
||||
}
|
||||
</ListCount>}
|
||||
<ListOption>
|
||||
<SelectInput className="input-select" onChange={e => handleOrderBy(e)}>
|
||||
<SelectInput className="input-select" onChange={e => handleOrderBy(e.target.value)}>
|
||||
<option value="DESC">내림차순</option>
|
||||
<option value="ASC">오름차순</option>
|
||||
</SelectInput>
|
||||
<SelectInput name="" id="" className="input-select" onChange={e => handlePageSize(e)}>
|
||||
<SelectInput name="" id="" className="input-select" onChange={e => handlePageSize(e.target.value)}>
|
||||
<option value="50">50개</option>
|
||||
<option value="100">100개</option>
|
||||
</SelectInput>
|
||||
|
||||
Reference in New Issue
Block a user