From f0e5f7893705bde43784b642a0ca30f61ecb399a Mon Sep 17 00:00:00 2001 From: Alexander Petric Date: Mon, 10 Feb 2025 15:57:32 -0500 Subject: [PATCH] fix typo in open drawer helper doc (#5258) --- frontend/src/lib/components/apps/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/apps/utils.ts b/frontend/src/lib/components/apps/utils.ts index cb30aac94f..5e41d4ccfa 100644 --- a/frontend/src/lib/components/apps/utils.ts +++ b/frontend/src/lib/components/apps/utils.ts @@ -248,7 +248,7 @@ declare function setValue(id: string, value: any): void; */ declare function setSelectedIndex(id: string, index: number): void; -/** close a drawer or modal +/** open a drawer or modal * @param id component's id */ declare function open(id: string): void;