[ARVADOS-WORKBENCH2] updated: 1.2.0-607-gf22b322

Git user git at public.curoverse.com
Thu Oct 11 12:05:09 EDT 2018


Summary of changes:
 src/views/workflow-panel/workflow-description-card.tsx | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

       via  f22b32278ee550555b887910c19ada96ca60f826 (commit)
      from  3304c66ff9a14c9f33c97b57952721b375e692c0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit f22b32278ee550555b887910c19ada96ca60f826
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date:   Thu Oct 11 18:04:51 2018 +0200

    refs #14312-workflows-inputs-overflow
    
    Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>

diff --git a/src/views/workflow-panel/workflow-description-card.tsx b/src/views/workflow-panel/workflow-description-card.tsx
index a983564..ecbc9f0 100644
--- a/src/views/workflow-panel/workflow-description-card.tsx
+++ b/src/views/workflow-panel/workflow-description-card.tsx
@@ -9,14 +9,21 @@ import { WorkflowIcon } from '~/components/icon/icon';
 import { DataTableDefaultView } from '~/components/data-table-default-view/data-table-default-view';
 import { WorkflowResource, parseWorkflowDefinition, getWorkflowInputs, getInputLabel, stringifyInputType } from '~/models/workflow';
 
-export type CssRules = 'root' | 'tab';
+export type CssRules = 'root' | 'tab' | 'inputTab';
 
 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
     root: {
-        height: '100%',
+        height: '100%'
     },
     tab: {
         minWidth: '50%'
+    },
+    inputTab: {
+        overflowX: 'auto',
+        overflowY: 'hidden',
+        '&:last-child': {
+            paddingBottom: theme.spacing.unit / 2,
+        }
     }
 });
 
@@ -53,7 +60,7 @@ export const WorkflowDetailsCard = withStyles(styles)(
                                 messages={['Please select a workflow to see its description.']} />
                         )}
                 </CardContent>}
-                {value === 1 && <CardContent>
+                {value === 1 && <CardContent className={classes.inputTab}>
                     {workflow
                         ? this.renderInputsTable()
                         : <DataTableDefaultView

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list