Skip to content

Commit

Permalink
Merge pull request #306 from wilhelmguo/hotfix/fix_list_pvs_status_error
Browse files Browse the repository at this point in the history
Fix list pvs status error
  • Loading branch information
wilhelmguo authored Feb 25, 2019
2 parents 341920c + 7045335 commit 236f5b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ export class ListPersistentVolumeClaimComponent implements OnInit, OnDestroy {
if (!tplStatusMap[stat.templateId]) {
tplStatusMap[stat.templateId] = Array<PublishStatus>();
}
tplStatusMap[stat.templateId].push(state);
tplStatusMap[stat.templateId].push(stat);
}
}
this.tplStatusMap = tplStatusMap;
Expand Down

0 comments on commit 236f5b6

Please sign in to comment.