ui: use get to access job meta value (#11370)

This commit is contained in:
Luiz Aoqui
2021-10-22 10:05:48 -04:00
committed by GitHub
parent ae3d059f96
commit 5653d28c23

View File

@@ -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) : '',
})
);