mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-07 13:07:22 +00:00
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:
parent
4cd5988bc1
commit
b85883bfe7
@ -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(
|
||||
() =>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user