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

fix: chart.digest is the same for all charts and not suited as unique id

Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
Roman 2021-01-15 13:50:45 +02:00
parent 83ed44f670
commit 116334bae6

View File

@ -86,7 +86,7 @@ export class HelmChart {
tillerVersion?: string;
getId() {
return this.digest;
return `${this.apiVersion}/${this.name}@${this.getAppVersion()}`;
}
getName() {