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 (#1964)

Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
Roman 2021-01-19 14:15:37 +02:00 committed by GitHub
parent 31aa3cb571
commit d8e088f352
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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