From 116334bae6f7d72516d392cea160419c682b21d4 Mon Sep 17 00:00:00 2001 From: Roman Date: Fri, 15 Jan 2021 13:50:45 +0200 Subject: [PATCH] fix: chart.digest is the same for all charts and not suited as unique id Signed-off-by: Roman --- src/renderer/api/endpoints/helm-charts.api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/api/endpoints/helm-charts.api.ts b/src/renderer/api/endpoints/helm-charts.api.ts index a1fd497798..8beff01779 100644 --- a/src/renderer/api/endpoints/helm-charts.api.ts +++ b/src/renderer/api/endpoints/helm-charts.api.ts @@ -86,7 +86,7 @@ export class HelmChart { tillerVersion?: string; getId() { - return this.digest; + return `${this.apiVersion}/${this.name}@${this.getAppVersion()}`; } getName() {