Fix map layout jump, CRM/edit distributeurs, progress overlay.

Stable map grid, no fitBounds on world view, entity PATCH edit form, CRM buttons on distributors, and loading animation for sync/wait states.
This commit is contained in:
Aissa
2026-07-19 18:47:12 +00:00
parent 6856d09cd1
commit 8d2766efb6
6 changed files with 263 additions and 14 deletions
+7
View File
@@ -86,6 +86,13 @@ async def api_entities(
return await _proxy("GET", "/entities", params=params)
@router.patch("/api/export-intel/entities/{entity_id}")
async def api_update_entity(entity_id: int, request: Request):
body = await request.json()
return await _proxy("PATCH", f"/entities/{entity_id}", json=body)
@router.get("/api/export-intel/entities/{entity_id}")
async def api_entity(entity_id: int):
return await _proxy("GET", f"/entities/{entity_id}")