From cb61d78069ba93bc5a918f0c3ff501eba7b31d41 Mon Sep 17 00:00:00 2001 From: kochetkov Date: Tue, 26 Nov 2024 19:21:21 +0300 Subject: [PATCH] SUPPORT-8746 small fix --- frontend/src/ts/ervu/ConfigExecuteBtn.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/ts/ervu/ConfigExecuteBtn.ts b/frontend/src/ts/ervu/ConfigExecuteBtn.ts index a1cc1b1..9c0f0b6 100644 --- a/frontend/src/ts/ervu/ConfigExecuteBtn.ts +++ b/frontend/src/ts/ervu/ConfigExecuteBtn.ts @@ -28,7 +28,7 @@ export class ConfigExecuteBtn extends AbstractButton { initialize() { super.initialize(); this.script = this.getScript(ConfigExecutorRpcService); - this.messagesService = this.getScript(MessagesService); + this.messagesService = this.injector.get(MessagesService); } doClickActions(): Promise {