fix: wait for angular document ready

This commit is contained in:
Baptiste Grob
2020-11-03 19:32:29 +01:00
parent 63233fcd52
commit a6991b140f

View File

@@ -147,5 +147,7 @@ async function startApplication(
}); });
} }
angular.bootstrap(document, ['app']); angular.element(document).ready(() => {
angular.bootstrap(document, ['app']);
});
} }