We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29edb1b commit bb8a6c2Copy full SHA for bb8a6c2
services/web/server/src/simcore_service_webserver/projects/_projects_repository_legacy.py
@@ -786,7 +786,9 @@ async def get_project_dict_and_type(
786
async def get_project_db(self, project_uuid: ProjectID) -> ProjectDBGet:
787
async with self.engine.acquire() as conn:
788
result = await conn.execute(
789
- sa.select(*PROJECT_DB_COLS).where(projects.c.uuid == f"{project_uuid}")
+ sa.select(*PROJECT_DB_COLS, projects.c.workbench).where(
790
+ projects.c.uuid == f"{project_uuid}"
791
+ )
792
)
793
row = await result.fetchone()
794
if row is None:
0 commit comments