mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Using different Ids for HotbarIcons (#3186)
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
parent
867cd5ac1f
commit
b9dfd20a93
@ -173,7 +173,7 @@ export class Catalog extends React.Component<Props> {
|
||||
renderIcon(item: CatalogEntityItem<CatalogEntity>) {
|
||||
return (
|
||||
<HotbarIcon
|
||||
uid={item.getId()}
|
||||
uid={`catalog-icon-${item.getId()}`}
|
||||
title={item.getName()}
|
||||
source={item.source}
|
||||
src={item.entity.spec.icon?.src}
|
||||
|
||||
@ -160,7 +160,7 @@ export class HotbarMenu extends React.Component<Props> {
|
||||
/>
|
||||
) : (
|
||||
<HotbarIcon
|
||||
uid={item.entity.uid}
|
||||
uid={`hotbar-icon-${item.entity.uid}`}
|
||||
title={item.entity.name}
|
||||
source={item.entity.source}
|
||||
menuItems={disabledMenuItems}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user