Browse Source

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

Romain Rigaux 8 years ago
parent
commit
ba21678
1 changed files with 1 additions and 1 deletions
  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);
               }
               $.jHueNotify.info("${ _('Creation success') }");
-              if (resp.errors) {
+              if (resp.errors && resp.errors.length) {
                 $.jHueNotify.warn("${ _('Skipped records: ') }" + resp.errors.join(', '));
               }
               huePubSub.publish('open.link', resp.on_success_url);