diff options
author | Christopher Baines <mail@cbaines.net> | 2019-05-30 19:04:36 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-05-30 19:40:12 +0100 |
commit | a981eaedef33de3aa287f254e46e2f866bdbb25e (patch) | |
tree | e2bc40f74e2a7471173d9b96964fd282999df6f6 | |
parent | baf19da43f9004662e66be369650e4aedcf58dca (diff) | |
download | govuk-mini-environment-admin-a981eaedef33de3aa287f254e46e2f866bdbb25e.tar govuk-mini-environment-admin-a981eaedef33de3aa287f254e46e2f866bdbb25e.tar.gz |
Fix the list of jobs on the AWS using AMI backend page
-rw-r--r-- | app/views/backends/terraform_aws_using_ami/show.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/backends/terraform_aws_using_ami/show.html.erb b/app/views/backends/terraform_aws_using_ami/show.html.erb index 14810d1..2e9efd5 100644 --- a/app/views/backends/terraform_aws_using_ami/show.html.erb +++ b/app/views/backends/terraform_aws_using_ami/show.html.erb @@ -128,7 +128,7 @@ License along with the GOV.UK Mini Environment Admin. If not, see <%= render( partial: 'shared/jobs', locals: { - jobs: Backends::TerraformAwsJob.jobs(@backend.id).order(id: :desc) + jobs: Backends::TerraformAwsUsingAmiJob.jobs(@backend.id).order(id: :desc) } ) %> </div> |