AMBARI-3807 Cannot save config-group due to missing service id. (atkach)
diff --git a/ambari-web/app/utils/config.js b/ambari-web/app/utils/config.js
index 671e1a3..4c1c4a5 100644
--- a/ambari-web/app/utils/config.js
+++ b/ambari-web/app/utils/config.js
@@ -1120,7 +1120,7 @@
     sendData.sender = sendData;
     App.ajax.send(sendData);
     if (newConfigGroupData) {
-      newConfigGroupData.set('service', App.Service.find().filterProperty('serviceName', serviceId));
+      newConfigGroupData.set('service', App.Service.find().findProperty('serviceName', serviceId));
       newConfigGroupData.set('name', configGroupName);
       newConfigGroupData.set('description', description);
     }