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

Removing entity icon hover effect in catalog and settings

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-06-28 10:45:50 +03:00
parent c1dfcd42e1
commit 594fdda022
2 changed files with 2 additions and 0 deletions

View File

@ -180,6 +180,7 @@ export class Catalog extends React.Component<Props> {
material={item.entity.spec.icon?.material} material={item.entity.spec.icon?.material}
background={item.entity.spec.icon?.background} background={item.entity.spec.icon?.background}
onClick={() => this.onDetails(item)} onClick={() => this.onDetails(item)}
interactive={false}
size={24} size={24}
/> />
); );

View File

@ -90,6 +90,7 @@ export class EntitySettings extends React.Component<Props> {
title={this.entity.metadata.name} title={this.entity.metadata.name}
source={this.entity.metadata.source} source={this.entity.metadata.source}
src={this.entity.spec.icon?.src} src={this.entity.spec.icon?.src}
interactive={false}
/> />
<h2>{this.entity.metadata.name}</h2> <h2>{this.entity.metadata.name}</h2>
</div> </div>