From d9e49ea2e366b394ce63ef3c230ca2bd41472792 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Mon, 5 Jan 2015 13:45:11 -0800 Subject: [PATCH] INFRA-132 - js/view/crm.profile-selector.js - Cleanup empty checks to satisfy jshint --- js/view/crm.profile-selector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/view/crm.profile-selector.js b/js/view/crm.profile-selector.js index 764c649bc4..54b1de5fe2 100644 --- a/js/view/crm.profile-selector.js +++ b/js/view/crm.profile-selector.js @@ -71,7 +71,7 @@ this.$('.crm-profile-selector-edit,.crm-profile-selector-copy').prop('disabled', !this.hasUfGroupId()); }, hasUfGroupId: function() { - return (this.getUfGroupId() && this.getUfGroupId() != '') ? true : false; + return (this.getUfGroupId() && this.getUfGroupId() !== '') ? true : false; }, setUfGroupId: function(value, options) { this.options.ufGroupId = value; -- 2.25.1