From 4a2789c9974a1fa0f851a3bb2aa24bff5b029c48 Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Thu, 17 Mar 2022 13:29:17 -0300 Subject: [PATCH] 16672: Process log card fully implemented in process panel. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- .../process-log-panel/process-log-form.tsx | 15 ++- src/views/process-panel/process-log-card.tsx | 123 ++++++++++++++++++ .../process-panel/process-panel-root.tsx | 13 +- 3 files changed, 138 insertions(+), 13 deletions(-) create mode 100644 src/views/process-panel/process-log-card.tsx diff --git a/src/views/process-log-panel/process-log-form.tsx b/src/views/process-log-panel/process-log-form.tsx index 946e575e..7f98c978 100644 --- a/src/views/process-log-panel/process-log-form.tsx +++ b/src/views/process-log-panel/process-log-form.tsx @@ -3,7 +3,15 @@ // SPDX-License-Identifier: AGPL-3.0 import React from 'react'; -import { withStyles, WithStyles, StyleRulesCallback, FormControl, InputLabel, Select, MenuItem, Input } from '@material-ui/core'; +import { + withStyles, + WithStyles, + StyleRulesCallback, + FormControl, + Select, + MenuItem, + Input +} from '@material-ui/core'; import { ArvadosTheme } from 'common/custom-theme'; import { FilterOption } from './process-log-panel'; @@ -11,7 +19,7 @@ type CssRules = 'formControl'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ formControl: { - minWidth: 200 + minWidth: theme.spacing.unit * 15, } }); @@ -30,9 +38,6 @@ export const ProcessLogForm = withStyles(styles)( ({ classes, selectedFilter, onChange, filters }: ProcessLogFormProps) =>
- - Event Type -