From a24e754c803fa7e79dda922c4bbbd799db6ed8f8 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Thu, 15 Oct 2015 15:23:07 -0700 Subject: [PATCH] GUAC-1193: Fix documentation of historyRecords property. --- .../app/settings/directives/guacSettingsConnectionHistory.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/guacamole/src/main/webapp/app/settings/directives/guacSettingsConnectionHistory.js b/guacamole/src/main/webapp/app/settings/directives/guacSettingsConnectionHistory.js index 7284a1135..edc7e9db8 100644 --- a/guacamole/src/main/webapp/app/settings/directives/guacSettingsConnectionHistory.js +++ b/guacamole/src/main/webapp/app/settings/directives/guacSettingsConnectionHistory.js @@ -53,9 +53,10 @@ angular.module('settings').directive('guacSettingsConnectionHistory', [function $scope.dataSource = $routeParams.dataSource; /** - * The identifier of the currently-selected data source. + * All matching connection history records, or null if these + * records have not yet been retrieved. * - * @type String + * @type ConnectionHistoryEntry[] */ $scope.historyRecords = null;