From e3ac1c84d7de4bed88016d45a58c87d9c4e5aa53 Mon Sep 17 00:00:00 2001 From: ronalds Date: Thu, 27 Nov 2025 02:22:06 -0300 Subject: [PATCH] Listo! Logs eliminados. Frontend v1.0.63. --- frontend/package.json | 2 +- frontend/src/App.jsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 7848820..c22cfd9 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ { "name": "checklist-frontend", "private": true, - "version": "1.0.61", + "version": "1.0.63", "type": "module", "scripts": { "dev": "vite", diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index cee28bf..36aefd6 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -3477,10 +3477,10 @@ function InspectionModal({ checklist, user, onClose, onComplete }) { const answerData = { inspection_id: inspectionId, question_id: question.id, - answer_value: answer.value, + answer_value: answer.value || null, status: status, comment: answer.observations || null, - ai_analysis: answer.aiAnalysis || null, // Incluir anĂ¡lisis de IA completo + ai_analysis: answer.aiAnalysis || null, is_flagged: status === 'critical' }