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

Use single icon prop

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2023-03-16 17:09:27 +03:00
parent 165d3b6b33
commit f9f83576f7
2 changed files with 4 additions and 9 deletions

View File

@ -105,7 +105,6 @@ export interface ClusterPreferences extends ClusterPrometheusPreferences {
* cleared by preferences. * cleared by preferences.
*/ */
icon?: string | null; icon?: string | null;
iconBackgroundColor?: string;
httpsProxy?: string; httpsProxy?: string;
hiddenMetrics?: string[]; hiddenMetrics?: string[];
nodeShellImage?: string; nodeShellImage?: string;

View File

@ -23,15 +23,11 @@ const updateEntitySpecInjectable = getInjectable({
entity.spec.metrics.prometheus = prometheus; entity.spec.metrics.prometheus = prometheus;
} }
entity.spec.icon ??= {};
if (cluster.preferences.iconBackgroundColor) {
entity.spec.icon.background = cluster.preferences.iconBackgroundColor;
}
if (cluster.preferences.icon) { if (cluster.preferences.icon) {
entity.spec.icon.src = cluster.preferences.icon; const source = cluster.preferences.icon.startsWith("data:") ? "src" : "background";
entity.spec.icon.background = cluster.preferences.iconBackgroundColor;
entity.spec.icon ??= {};
entity.spec.icon[source] = cluster.preferences.icon;
} else if (cluster.preferences.icon === null) { } else if (cluster.preferences.icon === null) {
/** /**
* NOTE: only clear the icon if set to `null` by ClusterIconSettings. * NOTE: only clear the icon if set to `null` by ClusterIconSettings.