chore: rebuild client
This commit is contained in:
parent
09e2f9bc39
commit
8aebdc54a5
3 changed files with 9 additions and 3 deletions
File diff suppressed because one or more lines are too long
|
@ -133,7 +133,8 @@
|
|||
cursor: default;
|
||||
}
|
||||
|
||||
.xterm.xterm-cursor-pointer {
|
||||
.xterm.xterm-cursor-pointer,
|
||||
.xterm .xterm-cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
@ -173,6 +174,11 @@
|
|||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.xterm-screen .xterm-decoration-container .xterm-decoration {
|
||||
z-index: 6;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
body, html {
|
||||
font-family: helvetica, sans-serif, arial;
|
||||
font-size: 1em;
|
||||
|
|
|
@ -23,7 +23,7 @@ let termRows;
|
|||
*/
|
||||
function connError(socket, err) {
|
||||
let msg = util.inspect(err);
|
||||
const { session } = socket.request.session;
|
||||
const { session } = socket.request;
|
||||
if (err?.level === 'client-authentication') {
|
||||
msg = `Authentication failure user=${session.username} from=${socket.handshake.address}`;
|
||||
socket.emit('allowreauth', session.ssh.allowreauth);
|
||||
|
|
Loading…
Reference in a new issue