From 69b0513871764afb768b633b866c9ea7ddc6c31f Mon Sep 17 00:00:00 2001 From: James Laska Date: Thu, 16 Jan 2014 09:04:44 -0500 Subject: [PATCH] AC-937 - Correct js parse error Fixes parse error that prevented compile.sh from completing successfully. --- awx/ui/static/js/lists/Streams.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/ui/static/js/lists/Streams.js b/awx/ui/static/js/lists/Streams.js index c2b90aed83..39b8123970 100644 --- a/awx/ui/static/js/lists/Streams.js +++ b/awx/ui/static/js/lists/Streams.js @@ -56,10 +56,10 @@ angular.module('StreamListDefinition', []) // dropdown all_objects: { label: 'All', - searchOnly: true, + searchOnly: true, searchObject: 'all', searchPlaceholder: 'All resources', - searchWidget: 2, + searchWidget: 2 }, credential_search: { label: 'Credential', @@ -227,4 +227,4 @@ angular.module('StreamListDefinition', []) } } - }); \ No newline at end of file + });