From 40d85352815db0a4b2bf58d635b0b7571001b245 Mon Sep 17 00:00:00 2001 From: Jimmy Date: Mon, 18 Oct 2021 09:11:11 +0300 Subject: [PATCH] GUACAMOLE-1446: Fixed a typo mistake ("Conneccting", "otherise"). --- .../src/main/frontend/src/app/client/types/ManagedClient.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guacamole/src/main/frontend/src/app/client/types/ManagedClient.js b/guacamole/src/main/frontend/src/app/client/types/ManagedClient.js index 8a06deaee..fb7c8474e 100644 --- a/guacamole/src/main/frontend/src/app/client/types/ManagedClient.js +++ b/guacamole/src/main/frontend/src/app/client/types/ManagedClient.js @@ -432,7 +432,7 @@ angular.module('client').factory('ManagedClient', ['$rootScope', '$injector', ManagedClientState.ConnectionState.IDLE); break; - // Conneccting + // Connecting case 1: ManagedClientState.setConnectionState(managedClient.clientState, ManagedClientState.ConnectionState.CONNECTING); @@ -899,7 +899,7 @@ angular.module('client').factory('ManagedClient', ['$rootScope', '$injector', * * @returns {boolean} * true if there are any file transfers associated with the - * given client, false otherise. + * given client, false otherwise. */ ManagedClient.hasTransfers = function hasTransfers(client) { return !!(client && client.uploads && client.uploads.length);