feat: toLowerCase

parent 0bd95e3d
...@@ -133,11 +133,11 @@ export class CleftbarComponent implements OnInit { ...@@ -133,11 +133,11 @@ export class CleftbarComponent implements OnInit {
if (userid === '') { if (userid === '') {
return; return;
} }
if (host.plantform === 'Linux') { if (host.plantform.toLowerCase() === 'linux') {
jQuery('app-ssh').show(); jQuery('app-ssh').show();
jQuery('app-rdp').hide(); jQuery('app-rdp').hide();
this._term.TerminalConnect(host, userid); this._term.TerminalConnect(host, userid);
} else if (host.plantform === 'Windows') { } else if (host.plantform.toLowerCase() === 'windows') {
jQuery('app-ssh').hide(); jQuery('app-ssh').hide();
jQuery('app-rdp').show(); jQuery('app-rdp').show();
this._rdp.Connect(host, userid); this._rdp.Connect(host, userid);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment