Browse Source

Add alert on error

sebavan 6 years ago
parent
commit
3c10d91499
1 changed files with 1 additions and 0 deletions
  1. 1 0
      inspector/src/components/actionTabs/tabs/toolsTabComponent.tsx

+ 1 - 0
inspector/src/components/actionTabs/tabs/toolsTabComponent.tsx

@@ -100,6 +100,7 @@ export class ToolsTabComponent extends PaneComponent {
             })
             .catch((error: any) => {
                 console.error(error);
+                alert(error);
             });
     }