File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,7 @@ const App: React.FC = React.memo(() => {
9
9
< Splash />
10
10
< DashboardContainer />
11
11
</ div >
12
-
13
- )
12
+ ) ;
14
13
} ) ;
15
14
16
15
export default App ;
Original file line number Diff line number Diff line change @@ -76,10 +76,10 @@ const AwsModal: React.FC<AddModalProps> = React.memo(({ setOpen }) => {
76
76
< option value = "AWS/ECS" > Elastic Container Service (ECS)</ option >
77
77
</ select >
78
78
</ div >
79
- { typeOfService === 'AWS/EC2' &&
79
+ { typeOfService === 'AWS/EC2' && (
80
80
< div >
81
81
< label htmlFor = "instance" >
82
- Instance/Cluster Name < span > *</ span >
82
+ AWS Instance ID < span > *</ span >
83
83
</ label >
84
84
< input
85
85
id = "aws-instance"
@@ -90,7 +90,7 @@ const AwsModal: React.FC<AddModalProps> = React.memo(({ setOpen }) => {
90
90
required
91
91
/>
92
92
</ div >
93
- }
93
+ ) }
94
94
< div >
95
95
< label htmlFor = "region" >
96
96
Region< span > *</ span >
@@ -128,7 +128,7 @@ const AwsModal: React.FC<AddModalProps> = React.memo(({ setOpen }) => {
128
128
</ label >
129
129
< input
130
130
id = "aws-access-key"
131
- type = "text "
131
+ type = "password "
132
132
name = "accessKey"
133
133
value = { accessKey }
134
134
onChange = { e => handleChange ( e ) }
@@ -142,7 +142,7 @@ const AwsModal: React.FC<AddModalProps> = React.memo(({ setOpen }) => {
142
142
</ label >
143
143
< input
144
144
id = "aws-secret-access-key"
145
- type = "text "
145
+ type = "password "
146
146
name = "secretAccessKey"
147
147
value = { secretAccessKey }
148
148
onChange = { e => handleChange ( e ) }
You can’t perform that action at this time.
0 commit comments