퍼블 업뎃 (관리자)

thkim
Lim\jun 2024-06-07 13:55:34 +09:00
parent 450d57195d
commit 3bf786ae8d
2 changed files with 4 additions and 4 deletions

View File

@ -125,7 +125,7 @@ function ChildCodeDiv({}, ref){
}
return (
<Container className={"pt-3"} id={"codeItemDiv"}>
<div className={""} id={"codeItemDiv"}>
<input type={"hidden"} id={"grpCd"} value={grpCd}/>
<Row className={"py-2 bg-light border-bottom"}>
<Col xs={3}>코드</Col>
@ -152,7 +152,7 @@ function ChildCodeDiv({}, ref){
<Col>코드 그룹을 선택해주세요.</Col>
</Row>
)}
</Container>
</div>
);
}

View File

@ -129,7 +129,7 @@ function ParentCodeDiv({getCodeItem}){
}
return (
<Container className={"pt-3"} >
<div className={"pe-3"} >
<Row className={"py-2 bg-light border-bottom"}>
<Col xs={3}>코드그룹</Col>
<Col xs={5}>코드그룹명</Col>
@ -146,7 +146,7 @@ function ParentCodeDiv({getCodeItem}){
</Col>
<Col xs={{span:2, offset:2}}><Button type={"button"} variant={"primary"} size={"sm"} onClick={addCodeGrp}>등록</Button></Col>
</Row>
</Container>
</div>
);
}