From 959121aa0b9964fe624c87d6d1f3787f1dba537b Mon Sep 17 00:00:00 2001 From: yyh Date: Tue, 3 Mar 2026 16:09:31 +0800 Subject: [PATCH] fix --- web/app/components/base/ui/placement.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/base/ui/placement.ts b/web/app/components/base/ui/placement.ts index 4d24f3a5f2..95f233fd56 100644 --- a/web/app/components/base/ui/placement.ts +++ b/web/app/components/base/ui/placement.ts @@ -6,7 +6,7 @@ type Side = 'top' | 'bottom' | 'left' | 'right' type Align = 'start' | 'center' | 'end' export type Placement - = | 'top' + = 'top' | 'top-start' | 'top-end' | 'right'