Improve the design of the frontend

This commit is contained in:
Urtzi Alfaro
2025-08-08 19:21:23 +02:00
parent 488bb3ef93
commit 62ca49d4b8
53 changed files with 5395 additions and 5387 deletions

View File

@@ -197,7 +197,7 @@ class ForecastingBaseRepository(BaseRepository):
errors = []
for field in required_fields:
if field not in data or not data[field]:
if field not in data or data[field] is None:
errors.append(f"Missing required field: {field}")
# Validate tenant_id format if present