From d35f670d7a814663bc9d1fac3b257c9a09967faf Mon Sep 17 00:00:00 2001 From: iCrawl Date: Fri, 14 Apr 2023 10:33:20 +0200 Subject: [PATCH] chore(website): move around static label --- apps/website/src/components/Property.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/website/src/components/Property.tsx b/apps/website/src/components/Property.tsx index db1a01563..de57b8bbe 100644 --- a/apps/website/src/components/Property.tsx +++ b/apps/website/src/components/Property.tsx @@ -38,6 +38,11 @@ export function Property({ Deprecated ) : null} + {(item as ApiProperty).isStatic ? ( +
+ Static +
+ ) : null} {item.isReadonly ? (
Readonly @@ -48,11 +53,6 @@ export function Property({ Optional
) : null} - {(item as ApiProperty).isStatic ? ( -
- Static -
- ) : null} ) : null}