소스 검색

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() {