diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 3bded5dcf1af0b6c3394010eec191c6f0b55479a..e50d743b505815de7b61d75a2ca15da84f2fa548 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -3,6 +3,7 @@
 Feeds 6.x 1.0 xxxxx xx, xxxx-xx-xx
 ----------------------------------
 
+- #717168 nicholasThompson: Fix feeds UI JS doesn't select labels correctly.
 - #708228 Scott Reynolds, alex_b: Break FeedsImportBatch into separate classes.
   NOTE: FeedsFetcher implementations cannot use FeedsImportBatch directly
   anymore but most provide their own implementation of FeedsImportBatch. See
diff --git a/feeds_ui/feeds_ui.js b/feeds_ui/feeds_ui.js
index 7f0ac9e5daed4d567aaf5c5a08449ee8465f66dd..9908320fde2bb4aa4f11167b97ba9914a186f48b 100644
--- a/feeds_ui/feeds_ui.js
+++ b/feeds_ui/feeds_ui.js
@@ -53,7 +53,7 @@ Drupal.behaviors.feeds = function() {
   // Replace checkbox with .feeds-ui-checkbox-link class with a link.
   $('.feeds-ui-checkbox-link:not(.processed)').each(function(i) {
     $(this).addClass('processed').after(
-      '<a href="#" onclick="return false;" class="feeds-ui-trigger-remove">' + $(this).children(' label').text() + '</a>'
+      '<a href="#" onclick="return false;" class="feeds-ui-trigger-remove">' + $('label', this).text() + '</a>'
     ).hide();
   });