Merge branch '16159-logout-request-with-token'
[arvados-workbench2.git] / src / views / run-process-panel / run-process-inputs-form.tsx
index 3a0afd34868c91fc7ce86727b84f3e7112e7f9b8..e6a504dbb8d2e9852cde01920d9b4398096f2c36 100644 (file)
@@ -92,7 +92,7 @@ const getInputComponent = (input: CommandInputParameter) => {
             return <FileInput options={{ showOnlyOwned: false, showOnlyWritable: false }} input={input as FileCommandInputParameter} />;
 
         case isPrimitiveOfType(input, CWLType.DIRECTORY):
-            return <DirectoryInput input={input as DirectoryCommandInputParameter} />;
+            return <DirectoryInput options={{ showOnlyOwned: false, showOnlyWritable: false }} input={input as DirectoryCommandInputParameter} />;
 
         case typeof input.type === 'object' &&
             !(input.type instanceof Array) &&