X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/d4f479b1c2bd4bb67d5e69f792b503f375d6dfc9..0aea0fe49faebf703226d662012aae71904a5a30:/src/store/advanced-tab/advanced-tab.tsx diff --git a/src/store/advanced-tab/advanced-tab.tsx b/src/store/advanced-tab/advanced-tab.tsx index b1f0f983..fc24ace0 100644 --- a/src/store/advanced-tab/advanced-tab.tsx +++ b/src/store/advanced-tab/advanced-tab.tsx @@ -413,7 +413,7 @@ const containerRequestApiResponse = (apiResponse: ContainerRequestResource) => { "container_count_max": ${stringify(containerCountMax)}, "mounts": ${stringifyObject(mounts)}, "runtime_constraints": ${stringifyObject(runtimeConstraints)}, -"container_image": "${stringify(containerImage)}", +"container_image": ${stringify(containerImage)}, "environment": ${stringifyObject(environment)}, "cwd": ${stringify(cwd)}, "command": ${stringifyObject(command)}, @@ -457,9 +457,9 @@ const collectionApiResponse = (apiResponse: CollectionResource) => { "storage_classes_desired": ${JSON.stringify(storageClassesDesired, null, 2)}, "storage_classes_confirmed": ${JSON.stringify(storageClassesConfirmed, null, 2)}, "storage_classes_confirmed_at": ${stringify(storageClassesConfirmedAt)}, -"currentVersionUuid": ${stringify(currentVersionUuid)}, +"current_version_uuid": ${stringify(currentVersionUuid)}, "version": ${version}, -"preserveVersion": ${preserveVersion}`; +"preserve_version": ${preserveVersion}`; return {'{'} {response} {'\n'} {'}'}; };