File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
x-pack/plugins/uptime/public/components/fleet_package Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import {
1717 EuiDescribedFormGroup ,
1818 EuiCheckbox ,
1919 EuiSpacer ,
20+ EuiFieldPassword ,
2021} from '@elastic/eui' ;
2122
2223import { useHTTPAdvancedFieldsContext } from './contexts' ;
@@ -110,7 +111,7 @@ export const HTTPAdvancedFields = memo<Props>(({ validate }) => {
110111 />
111112 }
112113 >
113- < EuiFieldText
114+ < EuiFieldPassword
114115 value = { fields [ ConfigKeys . PASSWORD ] }
115116 onChange = { ( event ) =>
116117 handleInputChange ( {
Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ import {
1313 EuiComboBox ,
1414 EuiComboBoxOptionOption ,
1515 EuiFormRow ,
16- EuiFieldText ,
1716 EuiTextArea ,
1817 EuiFormFieldset ,
1918 EuiSelect ,
2019 EuiScreenReaderOnly ,
2120 EuiSpacer ,
21+ EuiFieldPassword ,
2222} from '@elastic/eui' ;
2323
2424import { useTLSFieldsContext } from './contexts' ;
@@ -333,7 +333,7 @@ export const TLSFields: React.FunctionComponent<{
333333 }
334334 labelAppend = { < OptionalLabel /> }
335335 >
336- < EuiFieldText
336+ < EuiFieldPassword
337337 value = { fields [ ConfigKeys . TLS_KEY_PASSPHRASE ] . value }
338338 onChange = { ( event ) => {
339339 const value = event . target . value ;
You can’t perform that action at this time.
0 commit comments