style: 관리자 - 환경설정 - 위원회 코드관리 목록에서 '위원회 코드정보' input 넓이 변경 건

thkim
thkim 2024-02-23 17:29:17 +09:00
parent 4749369909
commit ee6b850bc4
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@ function ListLabelInputs(props) {
{ {
items && items &&
Object.entries(items).map(([key, value], index) => ( Object.entries(items).map(([key, value], index) => (
<ListItem key={index}> <ListItem key={index} >
<TextField id="standard-basic" label={key} variant="standard" value={value ? value : ""} inputProps={{ readOnly: true, }} /> <TextField sx={{ '&': { width: '100%' }}} id="standard-basic" label={key} variant="standard" value={value ? value : ""} inputProps={{ readOnly: true, }} />
</ListItem> </ListItem>
)) ))
} }