1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Using different Ids for HotbarIcons

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-06-25 15:50:13 +03:00
parent d9eb9125cf
commit 776432611a
2 changed files with 2 additions and 2 deletions

View File

@ -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}

View File

@ -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}