Skip to content

Commit bb8a6c2

Browse files
fix:
1 parent 29edb1b commit bb8a6c2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

services/web/server/src/simcore_service_webserver/projects/_projects_repository_legacy.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,9 @@ async def get_project_dict_and_type(
786786
async def get_project_db(self, project_uuid: ProjectID) -> ProjectDBGet:
787787
async with self.engine.acquire() as conn:
788788
result = await conn.execute(
789-
sa.select(*PROJECT_DB_COLS).where(projects.c.uuid == f"{project_uuid}")
789+
sa.select(*PROJECT_DB_COLS, projects.c.workbench).where(
790+
projects.c.uuid == f"{project_uuid}"
791+
)
790792
)
791793
row = await result.fetchone()
792794
if row is None:

0 commit comments

Comments
 (0)