From a1753a4dfd5cce799645e979a03f777d2c720534 Mon Sep 17 00:00:00 2001 From: Kevin Attfield Date: Sun, 16 Jun 2024 07:25:10 -0700 Subject: [PATCH] fix: formatting CI didn't run on this PR --- frontend/src/app/module-blueprint/common/tools/select-tool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/module-blueprint/common/tools/select-tool.ts b/frontend/src/app/module-blueprint/common/tools/select-tool.ts index b63b478b..23d9dadf 100644 --- a/frontend/src/app/module-blueprint/common/tools/select-tool.ts +++ b/frontend/src/app/module-blueprint/common/tools/select-tool.ts @@ -369,7 +369,7 @@ export class SelectTool implements ITool { // ignore keypress when a textbox is active let textboxElements = ["INPUT", "TEXTAREA"]; let activeElement = document.activeElement.tagName; - if ( textboxElements.includes(activeElement)) { + if (textboxElements.includes(activeElement)) { return; }