File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
wrongsecrets-balancer/ui/src/pages Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ module "eks" {
87
87
disk_type = " gp3"
88
88
disk_throughput = 150
89
89
disk_iops = 3000
90
- instance_types = [" t3a.large " ]
90
+ instance_types = [" t3a.xlarge " ]
91
91
92
92
iam_role_additional_policies = [
93
93
" arn:aws:iam::aws:policy/AmazonEKSWorkerNodePolicy" ,
Original file line number Diff line number Diff line change @@ -52,6 +52,10 @@ export const JoinPage = injectIntl(({ intl }) => {
52
52
53
53
async function sendJoinRequest ( ) {
54
54
try {
55
+ if ( ! teamname || teamname . length === 0 ) {
56
+ setFailed ( true ) ;
57
+ return ;
58
+ }
55
59
if ( dynamics . enable_password ) {
56
60
const hmacvalue = cryptoJS
57
61
. HmacSHA256 ( `${ teamname } ` , 'hardcodedkey' )
@@ -207,7 +211,7 @@ export const JoinPage = injectIntl(({ intl }) => {
207
211
< FormattedMessage id = "password" defaultMessage = "Password" />
208
212
</ Label >
209
213
< Input
210
- type = "text "
214
+ type = "password "
211
215
id = "password"
212
216
data-test-id = "password-input"
213
217
name = "password"
You can’t perform that action at this time.
0 commit comments