From 08eb10445bdda427d52ccc9d070a989b3fd4aa59 Mon Sep 17 00:00:00 2001 From: Stephen Smith Date: Mon, 1 Apr 2024 10:41:35 -0400 Subject: [PATCH] 21508: Remove image preview from io panel Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- .../src/views/process-panel/process-io-card.tsx | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/services/workbench2/src/views/process-panel/process-io-card.tsx b/services/workbench2/src/views/process-panel/process-io-card.tsx index e7eb43c24c..fcc6d6493b 100644 --- a/services/workbench2/src/views/process-panel/process-io-card.tsx +++ b/services/workbench2/src/views/process-panel/process-io-card.tsx @@ -573,17 +573,6 @@ interface ProcessValuePreviewProps { const ProcessValuePreview = withStyles(styles)(({ value, showImagePreview, classes }: ProcessValuePreviewProps & WithStyles) => ( - {value.imageUrl && showImagePreview ? ( - Inline Preview - ) : ( - "" - )} - {value.imageUrl && !showImagePreview ? : ""} {value.display} )); @@ -927,9 +916,3 @@ const UnsupportedValueChip = withStyles(styles)(({ classes }: WithStyles )); - -const ImagePlaceholder = withStyles(styles)(({ classes }: WithStyles) => ( - - - -)); -- 2.30.2