Browse Source

Fix related popup links for tabular inline

Denis K 8 years ago
parent
commit
ac9828d148
1 changed files with 3 additions and 1 deletions
  1. 3 1
      jet/static/jet/js/src/features/related-popups.js

+ 3 - 1
jet/static/jet/js/src/features/related-popups.js

@@ -85,7 +85,9 @@ RelatedPopups.prototype = {
         });
 
         $('.inline-group').on('inline-group-row:added', function(e, $inlineItem) {
-            self.initLinksForRow($inlineItem.find('.form-row'));
+            $inlineItem.find('.form-row').each(function() {
+                self.initLinksForRow($(this));
+            });
         });
     },
     initPopupBackButton: function() {