MINOR: fix the glossary description column width on term page (#19332)

* fix the glossary description column width on term page

* decrease the width so for smaller screen, other column should not overflow
This commit is contained in:
Ashish Gupta 2025-01-15 12:28:54 +05:30 committed by GitHub
parent 4cd5988bc1
commit b85883bfe7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -184,7 +184,7 @@ const GlossaryTermTab = ({
title: t('label.description'),
dataIndex: 'description',
key: 'description',
width: 250,
width: isGlossary ? 250 : 650,
render: (description: string) =>
description.trim() ? (
<RichTextEditorPreviewerV1
@ -311,7 +311,7 @@ const GlossaryTermTab = ({
}
return data;
}, [permissions]);
}, [permissions, isGlossary]);
const defaultCheckedList = useMemo(
() =>