Browse Source

운항과 비행승인 테이블 검토 상태값 오타 수정

master
김장현 2 weeks ago
parent
commit
2023f8d68b
  1. 7
      src/components/flight/OperationApprovalsTable.js

7
src/components/flight/OperationApprovalsTable.js

@ -559,10 +559,11 @@ export default function OperationApprovalsTable(props) {
const handleMouseDown = e => { const handleMouseDown = e => {
e.stopPropagation(); // 이벤트 전파 중지 e.stopPropagation(); // 이벤트 전파 중지
}; };
if (reviewedType === 'U') { if (reviewedType === 'U') {
reviewedType = 'W'; reviewedType = 'W';
} else if (reviewedType === 'P') { } else if (reviewedType === 'S') {
reviewedType = 'S'; reviewedType = 'P';
} }
return ( return (
@ -804,7 +805,7 @@ export default function OperationApprovalsTable(props) {
const handleCheckbox = async type => { const handleCheckbox = async type => {
if (checkList.length === 0) { if (checkList.length === 0) {
return handlerErrorModal( return handlerErrorModal(
'필수값 오', '필수값 오',
'검토 항목을 선택해주세요.', '검토 항목을 선택해주세요.',
false false
); );

Loading…
Cancel
Save