refactor: remove branch dropdown, update title, fix pr_number issue (microagent management) (#10691)

This commit is contained in:
Hiep Le
2025-08-29 03:24:48 +07:00
committed by GitHub
parent 7e3eabe777
commit 5b35203253
8 changed files with 25 additions and 133 deletions

View File

@@ -206,7 +206,7 @@ async def create_mr(
labels=labels,
)
if conversation_id and user_id:
if conversation_id:
await save_pr_metadata(user_id, conversation_id, response)
except Exception as e:
@@ -272,7 +272,7 @@ async def create_bitbucket_pr(
body=description,
)
if conversation_id and user_id:
if conversation_id:
await save_pr_metadata(user_id, conversation_id, response)
except Exception as e: