Merge pull request '점선그리드만 제거' (#610) from dev into dev-deploy
Reviewed-on: #610
This commit is contained in:
commit
9afecb5369
@ -152,12 +152,16 @@ export default function GridOption(props) {
|
|||||||
<div className="modal-check-btn-wrap">
|
<div className="modal-check-btn-wrap">
|
||||||
<h3 className="check-wrap-title light">{getMessage('modal.canvas.setting.grid')}</h3>
|
<h3 className="check-wrap-title light">{getMessage('modal.canvas.setting.grid')}</h3>
|
||||||
<div className="flex-check-box for2">
|
<div className="flex-check-box for2">
|
||||||
{gridOptions?.map((option) => (
|
{gridOptions?.map((option) =>
|
||||||
<button key={option.id} className={`check-btn ${option.selected ? 'act' : ''}`} onClick={(e) => onClickOption(option)}>
|
option.id === 2 ? (
|
||||||
<span className="check-area"></span>
|
<></>
|
||||||
<span className="title-area">{getMessage(option.name)}</span>
|
) : (
|
||||||
</button>
|
<button key={option.id} className={`check-btn ${option.selected ? 'act' : ''}`} onClick={(e) => onClickOption(option)}>
|
||||||
))}
|
<span className="check-area"></span>
|
||||||
|
<span className="title-area">{getMessage(option.name)}</span>
|
||||||
|
</button>
|
||||||
|
),
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/*<ColorPickerModal {...colorPickerProps} />*/}
|
{/*<ColorPickerModal {...colorPickerProps} />*/}
|
||||||
|
|||||||
@ -100,11 +100,11 @@ export default function SettingModal01(props) {
|
|||||||
<button className={`btn-frame modal ${buttonAct === 2 ? 'act' : ''}`} onClick={() => handleBtnClick(2)}>
|
<button className={`btn-frame modal ${buttonAct === 2 ? 'act' : ''}`} onClick={() => handleBtnClick(2)}>
|
||||||
{getMessage('modal.canvas.setting.font.plan')}
|
{getMessage('modal.canvas.setting.font.plan')}
|
||||||
</button>
|
</button>
|
||||||
{/*{canGridOptionSeletorValue && (
|
{canGridOptionSeletorValue && (
|
||||||
<button className={`btn-frame modal ${buttonAct === 3 ? 'act' : ''}`} onClick={() => handleBtnClick(3)}>
|
<button className={`btn-frame modal ${buttonAct === 3 ? 'act' : ''}`} onClick={() => handleBtnClick(3)}>
|
||||||
{getMessage('modal.canvas.setting.grid')}
|
{getMessage('modal.canvas.setting.grid')}
|
||||||
</button>
|
</button>
|
||||||
)}*/}
|
)}
|
||||||
</div>
|
</div>
|
||||||
{buttonAct === 1 && <FirstOption {...firstProps} />}
|
{buttonAct === 1 && <FirstOption {...firstProps} />}
|
||||||
{buttonAct === 2 && <SecondOption {...secondProps} />}
|
{buttonAct === 2 && <SecondOption {...secondProps} />}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user