From e2b7bec162529641fbe234db0ec4ab92457de703 Mon Sep 17 00:00:00 2001 From: Zeno Kapitein Date: Tue, 5 Aug 2025 14:17:00 +0200 Subject: [PATCH] Add linewrap to AI actions dropdown (#3534) --- packages/gitbook/src/components/AIActions/AIActions.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/gitbook/src/components/AIActions/AIActions.tsx b/packages/gitbook/src/components/AIActions/AIActions.tsx index 9c503b21d..b811ee8fd 100644 --- a/packages/gitbook/src/components/AIActions/AIActions.tsx +++ b/packages/gitbook/src/components/AIActions/AIActions.tsx @@ -251,13 +251,13 @@ function AIActionWrapper(props: { >
{loading ? ( - + ) : icon ? ( typeof icon === 'string' ? ( ) : ( icon @@ -268,9 +268,9 @@ function AIActionWrapper(props: {
{label} - {href ? : null} + {href ? : null} - {description && {description}} + {description && {description}}
);