Skip to content

Commit

Permalink
fix loading of users (#18969)
Browse files Browse the repository at this point in the history
  • Loading branch information
karanh37 authored Dec 9, 2024
1 parent 8acc891 commit fa9ee99
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ export const SelectableList = ({
className="selectable-list-virtual-list"
data={uniqueOptions}
height={height}
itemHeight={40}
itemKey="id"
onScroll={onScroll}>
{(item) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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]
);
Expand Down

0 comments on commit fa9ee99

Please sign in to comment.