From 169428d1eba15b5f2ba0aac578f3fa2c64f14782 Mon Sep 17 00:00:00 2001 From: Vladyslav_Prykhodko Date: Tue, 1 Feb 2022 14:49:02 +0200 Subject: [PATCH] UI: Fixed that widget JS resources will be loaded in the order in which they in list resources --- ui-ngx/src/app/core/services/resources.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-ngx/src/app/core/services/resources.service.ts b/ui-ngx/src/app/core/services/resources.service.ts index 7ba49a7b49..763617eda9 100644 --- a/ui-ngx/src/app/core/services/resources.service.ts +++ b/ui-ngx/src/app/core/services/resources.service.ts @@ -213,7 +213,7 @@ export class ResourcesService { case 'js': el = this.document.createElement('script'); el.type = 'text/javascript'; - el.async = true; + el.async = false; el.src = url; break; case 'css':