소스 검색

HUE-7713 [importer] Avoid printing Skipped records warning by mistake

Romain Rigaux 8 년 전
부모
커밋
ba21678
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      desktop/libs/indexer/src/indexer/templates/importer.mako

+ 1 - 1
desktop/libs/indexer/src/indexer/templates/importer.mako

@@ -2034,7 +2034,7 @@ ${ assist.assistPanel() }
                 huePubSub.publish(resp.pub_sub_url);
                 huePubSub.publish(resp.pub_sub_url);
               }
               }
               $.jHueNotify.info("${ _('Creation success') }");
               $.jHueNotify.info("${ _('Creation success') }");
-              if (resp.errors) {
+              if (resp.errors && resp.errors.length) {
                 $.jHueNotify.warn("${ _('Skipped records: ') }" + resp.errors.join(', '));
                 $.jHueNotify.warn("${ _('Skipped records: ') }" + resp.errors.join(', '));
               }
               }
               huePubSub.publish('open.link', resp.on_success_url);
               huePubSub.publish('open.link', resp.on_success_url);