15407: Fixes pending model.
authorLucas Di Pentima <lucas@di-pentima.com.ar>
Mon, 19 Aug 2019 17:38:28 +0000 (14:38 -0300)
committerLucas Di Pentima <lucas@di-pentima.com.ar>
Mon, 19 Aug 2019 19:44:03 +0000 (16:44 -0300)
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <ldipentima@veritasgenetics.com>

src/models/mount-types.ts
src/store/advanced-tab/advanced-tab.tsx

index 52b29499bbc6f91e3752ffc137b4e3aadd4ea4c3..db87db18cd5b12401431d9c03744ce548842da06 100644 (file)
@@ -22,7 +22,7 @@ export type MountType =
 export interface CollectionMount {
     kind: MountKind.COLLECTION;
     uuid?: string;
-    portableDataHash?: string;
+    portable_data_hash?: string;
     path?: string;
     writable?: boolean;
 }
index 3cc1dc3ad751b3e29be0bea3711b9891c23df24e..fc24ace02ed17189041661e5c75aefadfc6cfc9f 100644 (file)
@@ -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)},