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>) {
|
renderIcon(item: CatalogEntityItem<CatalogEntity>) {
|
||||||
return (
|
return (
|
||||||
<HotbarIcon
|
<HotbarIcon
|
||||||
uid={item.getId()}
|
uid={`catalog-icon-${item.getId()}`}
|
||||||
title={item.getName()}
|
title={item.getName()}
|
||||||
source={item.source}
|
source={item.source}
|
||||||
src={item.entity.spec.icon?.src}
|
src={item.entity.spec.icon?.src}
|
||||||
|
|||||||
@ -160,7 +160,7 @@ export class HotbarMenu extends React.Component<Props> {
|
|||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<HotbarIcon
|
<HotbarIcon
|
||||||
uid={item.entity.uid}
|
uid={`hotbar-icon-${item.entity.uid}`}
|
||||||
title={item.entity.name}
|
title={item.entity.name}
|
||||||
source={item.entity.source}
|
source={item.entity.source}
|
||||||
menuItems={disabledMenuItems}
|
menuItems={disabledMenuItems}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user