Skip to content

Commit

Permalink
Cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
Alkarex committed Oct 12, 2023
1 parent b72874d commit ce81323
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nodes/http-auth-multiple.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
{ class: 'node-input-auth-user', type: 'text', style: 'width: 30%;', placeholder: 'user' }).appendTo(row);

const propertyPassword = $('<input/>',
{ class: 'node-input-auth-password', type: 'text', style: 'margin-left: 3%; width: 30%;', placeholder: 'password' }).appendTo(row);
{ class: 'node-input-auth-password', type: 'text', style: 'margin-left: 3%; width: 66%;', placeholder: 'password' }).appendTo(row);

propertyUser.val(auth.user);
propertyPassword.val(auth.password);
Expand Down
4 changes: 2 additions & 2 deletions nodes/http-auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
name: { value: '' },
file: { value: '', type: 'http-basic-auth-file', required: false },
multiple: { value: '', type: 'http-basic-auth-multiple', required: false },
realm: { value: '' },
realm: { value: '', required: true },
username: { value: '' },
password: { value: '' },
},
color: '#E7E7AE',
icon: 'white-globe.png',
label: function () { return this.name.trim() || 'http basic auth'; },
label: function () { return this.name.trim() || 'http basic auth: ' + this.realm; },
labelStyle: function () { return this.name.trim() ? 'node_label_italic' : ''; },
paletteLabel: 'http basic auth',
});
Expand Down

0 comments on commit ce81323

Please sign in to comment.