label change

This commit is contained in:
proddy
2021-07-21 15:59:44 +02:00
parent f6d22732a0
commit c6db2a1adf

View File

@@ -67,7 +67,6 @@ class LogEventForm extends Component<LogEventFormProps> {
<ValidatorForm onSubmit={saveData}> <ValidatorForm onSubmit={saveData}>
<Grid <Grid
container container
spacing={0}
direction="row" direction="row"
justify="flex-start" justify="flex-start"
alignItems="center" alignItems="center"
@@ -75,8 +74,9 @@ class LogEventForm extends Component<LogEventFormProps> {
<Grid item xs={2}> <Grid item xs={2}>
<SelectValidator <SelectValidator
name="level" name="level"
label="Log Level" label="Filter on Log Level"
value={data.level} value={data.level}
fullWidth
variant="outlined" variant="outlined"
onChange={this.changeLevel} onChange={this.changeLevel}
margin="normal" margin="normal"
@@ -93,8 +93,8 @@ class LogEventForm extends Component<LogEventFormProps> {
<Grid item md> <Grid item md>
<Typography color="primary" variant="body2"> <Typography color="primary" variant="body2">
<i> <i>
(the last {data.max_messages} messages are buffered and new log &nbsp;(the last {data.max_messages} messages are retained and
events are shown in real time) all new log events are shown in real time below)
</i> </i>
</Typography> </Typography>
</Grid> </Grid>