fix : 아이콘 붙이기 및 pdf 파일만 업로드 되도록 수정, 다건 파일 업로드 일시 확인 필요

This commit is contained in:
Yesol Choi
2025-05-30 15:17:05 +09:00
parent 71a6890657
commit 854c18e2e9
2 changed files with 15 additions and 7 deletions

View File

@@ -196,7 +196,12 @@ const onFileChange = (e: any) => {
size: file.size,
data: result.split(',')[1],
}
pbAtts.value.push(pbAtt)
notyf.dismissAll()
if(pbAtt.logiFnm.includes('.pdf')) {
pbAtts.value.push(pbAtt)
}else{
notyf.error("pdf 파일만 업로드 가능합니다.")
}
}
reader.readAsDataURL(file)