Merge pull request 'fix: input 컴포넌트 누락된 빈 값 핸들링 처리' (#116) from feature/survey into dev
Reviewed-on: #116
This commit is contained in:
commit
37aa91392a
@ -96,7 +96,7 @@ export default function BasicForm({ basicInfo, setBasicInfo, mode, session }: Ba
|
||||
id="investigationDate"
|
||||
type="date"
|
||||
className="date-frame"
|
||||
value={basicInfo?.investigationDate?.toString()}
|
||||
value={basicInfo?.investigationDate?.toString() ?? ''}
|
||||
onChange={(e) => setBasicInfo({ ...basicInfo, investigationDate: e.target.value })}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user