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

[BugFix] Releases sort by revision incorrect

Signed-off-by: Pavel Ashevskii <pashevskii@mirantis.com>
This commit is contained in:
Pavel Ashevskii 2020-10-23 16:50:54 +04:00
parent 2a9d39a8b9
commit 967e7424c2

View File

@ -129,6 +129,7 @@ export const helmReleasesApi = {
export class HelmRelease implements ItemObject {
constructor(data: any) {
Object.assign(this, data);
this.revision = parseInt(data.revision);
}
static create(data: any) {