mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-24 14:08:45 +00:00
fix loading of users (#18969)
This commit is contained in:
parent
8acc891bec
commit
fa9ee99458
@ -459,10 +459,7 @@ const ClassificationDetails = forwardRef(
|
||||
allowRename={!isSystemClassification}
|
||||
allowSoftDelete={false}
|
||||
canDelete={deletePermission && !isClassificationDisabled}
|
||||
displayName={
|
||||
currentClassification.displayName ??
|
||||
currentClassification.name
|
||||
}
|
||||
displayName={getEntityName(currentClassification)}
|
||||
editDisplayNamePermission={
|
||||
editDisplayNamePermission && !isClassificationDisabled
|
||||
}
|
||||
|
||||
@ -282,6 +282,7 @@ export const SelectableList = ({
|
||||
className="selectable-list-virtual-list"
|
||||
data={uniqueOptions}
|
||||
height={height}
|
||||
itemHeight={40}
|
||||
itemKey="id"
|
||||
onScroll={onScroll}>
|
||||
{(item) => (
|
||||
|
||||
@ -682,8 +682,7 @@ const TagsPage = () => {
|
||||
entity: t('label.tag'),
|
||||
})
|
||||
: t('message.adding-new-tag', {
|
||||
categoryName:
|
||||
currentClassification?.displayName ?? currentClassification?.name,
|
||||
categoryName: getEntityName(currentClassification),
|
||||
}),
|
||||
[editTag, currentClassification]
|
||||
);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user