Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

change words and padding according to ux review comments #132

Merged
merged 2 commits into from
Apr 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ const onChangeDefinition = (e, form, resetResponse) => {
const selectDefinitions = plugins => {
return plugins === undefined || plugins.indexOf(ES_AD_PLUGIN) == -1
? defaultSelectDefinitions
: [...defaultSelectDefinitions, { value: 'ad', text: 'Define using Anomaly detector' }];
: [...defaultSelectDefinitions, { value: 'ad', text: 'Define using anomaly detector' }];
};

const MonitorDefinition = ({ resetResponse, plugins }) => (
<FormikSelect
name="searchType"
formRow
rowProps={{
label: 'How do you want to define the monitor?',
label: 'Define the monitor',
style: { paddingLeft: '10px' },
}}
inputProps={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ exports[`MonitorDefinition renders 1`] = `
class="euiFormLabel euiFormRow__label"
for="searchType-form-row"
>
How do you want to define the monitor?
Define the monitor
</label>
</div>
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const Interval = () => (
inputProps={{ icon: 'clock', min: 1 }}
/>
</EuiFlexItem>
<EuiFlexItem style={{ margin: '0px' }}>
<EuiFlexItem style={{ margin: '2px' }}>
<FormikSelect
name="period.unit"
formRow
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ exports[`Frequencies renders FrequencyPicker 1`] = `
</div>
<div
class="euiFlexItem"
style="margin:0px"
style="margin:2px"
>
<div
class="euiFormRow euiFormRow--hasEmptyLabelSpace"
Expand Down Expand Up @@ -379,7 +379,7 @@ exports[`Frequencies renders Interval 1`] = `
</div>
<div
class="euiFlexItem"
style="margin:0px"
style="margin:2px"
>
<div
class="euiFormRow euiFormRow--hasEmptyLabelSpace"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ class AnomalyDetectors extends React.Component {
}
}
return (
<div>
<div
style={{
maxWidth: '390px',
}}
>
<FormikComboBox
name={'detectorId'}
formRow
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,13 @@ exports[`AnomalyDetectors renders 1`] = `
}
}
>
<div>
<div
style={
Object {
"maxWidth": "390px",
}
}
>
<FormikComboBox
fieldProps={
Object {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class AnomalyDetectorTrigger extends React.Component {
thresholdEnum={adValues.anomalyGradeThresholdEnum}
keyFieldName="anomalyDetector.anomalyGradeThresholdEnum"
valueFieldName="anomalyDetector.anomalyGradeThresholdValue"
label="Anomaly grade condition"
label="Anomaly grade threshold"
/>
<EuiSpacer size="xs" />
<AnomaliesChart
Expand All @@ -77,7 +77,7 @@ class AnomalyDetectorTrigger extends React.Component {
thresholdEnum={adValues.anomalyConfidenceThresholdEnum}
keyFieldName="anomalyDetector.anomalyConfidenceThresholdEnum"
valueFieldName="anomalyDetector.anomalyConfidenceThresholdValue"
label="Anomaly confidence condition"
label="Anomaly confidence threshold"
/>
<EuiSpacer size="xs" />
<AnomaliesChart
Expand Down
3 changes: 1 addition & 2 deletions public/pages/MonitorDetails/containers/MonitorDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,7 @@ export default class MonitorDetails extends Component {
external="true"
target="_blank"
>
{detector.name}
<EuiIcon size="s" type="popout" />
{detector.name} <EuiIcon size="s" type="popout" />
</EuiLink>
</EuiText>
</EuiFlexItem>
Expand Down