diff --git a/server/api.py b/server/api.py index ad9c902..43f5c18 100644 --- a/server/api.py +++ b/server/api.py @@ -550,7 +550,7 @@ async def api_market_upload(file: UploadFile = File(...), name: str = "", catego resp = await client.post( f"{url}/api/collections/dashboards/records", headers={"Authorization": f"Bearer {token}"}, - data={"name": name, "category": category, "author": author, "version": "1.0.0"}, + data={"name": name, "category": category, "author": author, "version": "1.0.0", "status": "pending"}, files=files_httpx, ) return resp.json()