File tree 1 file changed +3
-3
lines changed
public/pages/ReviewAndCreate/components/DetectorDefinitionFields
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -132,11 +132,11 @@ export const DetectorDefinitionFields = (
132
132
} ;
133
133
134
134
const minAgeValue = get ( props , 'detector.resultIndexMinAge' , undefined ) ;
135
- const minAge = ( minAgeValue === undefined ) ? '- Days ' : minAgeValue + " Days" ;
135
+ const minAge = ( minAgeValue === undefined ) ? '-' : minAgeValue + " Days" ;
136
136
const minSizeValue = get ( props , 'detector.resultIndexMinSize' , undefined ) ;
137
- const minSize = ( minSizeValue === undefined ) ? '- MB ' : minSizeValue + " MB" ;
137
+ const minSize = ( minSizeValue === undefined ) ? '-' : minSizeValue + " MB" ;
138
138
const ttlValue = get ( props , 'detector.resultIndexTtl' , undefined ) ;
139
- const ttl = ( ttlValue === undefined ) ? '- Days ' : ttlValue + " Days" ;
139
+ const ttl = ( ttlValue === undefined ) ? '-' : ttlValue + " Days" ;
140
140
141
141
142
142
return (
You can’t perform that action at this time.
0 commit comments