16672: Removes the old process logs panel & related code.
[arvados-workbench2.git] / src / views / process-panel / process-log-form.tsx
similarity index 95%
rename from src/views/process-log-panel/process-log-form.tsx
rename to src/views/process-panel/process-log-form.tsx
index 7f98c978ef530ec3417098a37dd51b9f05298356..6a8e522144d750df223bcec77a42b90f21cd61fa 100644 (file)
@@ -13,7 +13,6 @@ import {
     Input
 } from '@material-ui/core';
 import { ArvadosTheme } from 'common/custom-theme';
-import { FilterOption } from './process-log-panel';
 
 type CssRules = 'formControl';
 
@@ -23,6 +22,11 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
     }
 });
 
+export interface FilterOption {
+    label: string;
+    value: string;
+}
+
 export interface ProcessLogFormDataProps {
     selectedFilter: FilterOption;
     filters: FilterOption[];