Skip to content

Commit

Permalink
Merge pull request #264 from bogdant36/CTX-6257-i
Browse files Browse the repository at this point in the history
CTX-6257: Changes regarding displaying and opening correct url in bro…
  • Loading branch information
igorperic17 authored Sep 3, 2024
2 parents 79a462a + 3092288 commit 934af35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions coretex/cli/modules/project_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ def promptProjectSelect(userConfig: UserConfiguration) -> Optional[Project]:
if newProject is None:
return None

project = newProject
userConfig.selectProject(project.id)

return project
Expand Down
2 changes: 1 addition & 1 deletion coretex/entities/task_run/task_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def _endpoint(cls) -> str:

@override
def entityUrl(self) -> str:
return f"workflow-run?id={self.workflowRunId}"
return f"workflow-run?id={self.workflowRunId}&taskRunId={self.id}"

def onDecode(self) -> None:
super().onDecode()
Expand Down

0 comments on commit 934af35

Please sign in to comment.