diff --git a/CHANGELOG.md b/CHANGELOG.md index e92450dd8218..f24e6aaaa88d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ BUG FIXES: * api: autoscaling policies should not be returned for stopped jobs [[GH-7768](https://github.com/hashicorp/nomad/issues/7768)] * jobspec: autoscaling policy block should return a parsing error multiple `policy` blocks are provided [[GH-7716](https://github.com/hashicorp/nomad/issues/7716)] + * ui: Fixed a bug where exec popup had incorrect URL for jobs where name ≠ id [[GH-7814](https://github.com/hashicorp/nomad/issues/7814)] ## 0.11.1 (April 22, 2020) diff --git a/ui/app/components/exec/open-button.js b/ui/app/components/exec/open-button.js index 1be16e488b02..38fd6919d362 100644 --- a/ui/app/components/exec/open-button.js +++ b/ui/app/components/exec/open-button.js @@ -16,7 +16,7 @@ export default Component.extend({ generateUrl() { let urlSegments = { - job: this.job.get('name'), + job: this.job.get('plainId'), }; if (this.taskGroup) {