title 추가

This commit is contained in:
minsik 2024-09-30 13:30:13 +09:00
parent 1d8d46eb4a
commit c28f798038

View File

@ -55,19 +55,22 @@ export default function WallLineSetting(props) {
{getMessage('modal.cover.outline.diagonal')} {getMessage('modal.cover.outline.diagonal')}
</button> </button>
</div> </div>
{type === OUTER_LINE_TYPE.OUTER_LINE ? ( <div className="properties-setting-wrap outer">
<OuterLineWall /> <div className="setting-tit">{getMessage('modal.cover.outline.setting')}</div>
) : type === OUTER_LINE_TYPE.RIGHT_ANGLE ? ( {type === OUTER_LINE_TYPE.OUTER_LINE ? (
<RightAngle /> <OuterLineWall />
) : type === OUTER_LINE_TYPE.DOUBLE_PITCH ? ( ) : type === OUTER_LINE_TYPE.RIGHT_ANGLE ? (
<DoublePitch /> <RightAngle />
) : type === OUTER_LINE_TYPE.ANGLE ? ( ) : type === OUTER_LINE_TYPE.DOUBLE_PITCH ? (
<Angle /> <DoublePitch />
) : type === OUTER_LINE_TYPE.DIAGONAL_LINE ? ( ) : type === OUTER_LINE_TYPE.ANGLE ? (
<Diagonal /> <Angle />
) : ( ) : type === OUTER_LINE_TYPE.DIAGONAL_LINE ? (
<></> <Diagonal />
)} ) : (
<></>
)}
</div>
<div className="grid-btn-wrap"> <div className="grid-btn-wrap">
<button className="btn-frame modal mr5" onClick={handleRollback}> <button className="btn-frame modal mr5" onClick={handleRollback}>
{getMessage('modal.cover.outline.rollback')} {getMessage('modal.cover.outline.rollback')}