浏览代码

Fix related popup links for tabular inline

Denis K 8 年之前
父节点
当前提交
ac9828d148
共有 1 个文件被更改,包括 3 次插入1 次删除
  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() {