From 1a868116614dd9996c78e69941b537e9da19460b Mon Sep 17 00:00:00 2001 From: Aijana Schumann Date: Tue, 1 Feb 2022 13:18:42 +0100 Subject: Update ODLUX Updated to Material-ui 5, updated dashboard view, removed NetworkMap, LinkCalculator and LineOfSightApp, small bugfixes Issue-ID: CCSDK-3580 Signed-off-by: Aijana Schumann Change-Id: Id0fc148673e23a755cafc2be1c489248c38ff47c --- .../performanceHistoryApp/src/components/chartFilter.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'sdnr/wt/odlux/apps/performanceHistoryApp/src/components/chartFilter.tsx') diff --git a/sdnr/wt/odlux/apps/performanceHistoryApp/src/components/chartFilter.tsx b/sdnr/wt/odlux/apps/performanceHistoryApp/src/components/chartFilter.tsx index e7583de12..e66e6c1e6 100644 --- a/sdnr/wt/odlux/apps/performanceHistoryApp/src/components/chartFilter.tsx +++ b/sdnr/wt/odlux/apps/performanceHistoryApp/src/components/chartFilter.tsx @@ -18,7 +18,9 @@ import * as React from 'react'; -import { makeStyles, TextField, Typography, Select, MenuItem, FormControl, InputLabel } from '@material-ui/core'; +import { TextField, Typography, Select, MenuItem, FormControl, InputLabel } from '@mui/material'; + +import makeStyles from '@mui/styles/makeStyles'; const styles = makeStyles({ filterInput: { @@ -44,19 +46,19 @@ const ChartFilter: React.FunctionComponent = (props) => { { props.isVisible &&
- props.onFilterChanged("radioSignalId", event.target.value)} InputLabelProps={{ + props.onFilterChanged("radioSignalId", event.target.value)} InputLabelProps={{ shrink: true, }} /> - props.onFilterChanged("scannerId", event.target.value)} InputLabelProps={{ + props.onFilterChanged("scannerId", event.target.value)} InputLabelProps={{ shrink: true, }} /> - props.onFilterChanged("timeStamp", event.target.value)} InputLabelProps={{ + props.onFilterChanged("timeStamp", event.target.value)} InputLabelProps={{ shrink: true, }} /> - + Suspect Interval - props.onFilterChanged("suspectIntervalFlag", event.target.value as string)}> None true false -- cgit 1.2.3-korg