From 5653d28c23fbdc25f125986be824437407092445 Mon Sep 17 00:00:00 2001 From: Luiz Aoqui Date: Fri, 22 Oct 2021 10:05:48 -0400 Subject: [PATCH] ui: use `get` to access job meta value (#11370) --- ui/app/components/job-dispatch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/components/job-dispatch.js b/ui/app/components/job-dispatch.js index 0cf027359..e7ea1392c 100644 --- a/ui/app/components/job-dispatch.js +++ b/ui/app/components/job-dispatch.js @@ -54,7 +54,7 @@ export default class JobDispatch extends Component { name: x, required, title: titleCase(noCase(x)), - value: this.args.job.meta ? this.args.job.meta[x] : '', + value: this.args.job.meta ? this.args.job.meta.get(x) : '', }) );