Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

Commit

Permalink
use appVersion in title bar
Browse files Browse the repository at this point in the history
  • Loading branch information
Adnan Abdulhussein committed Jul 21, 2017
1 parent 06d7891 commit 6aef4b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ui/src/app/chart-details/chart-details.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ export class ChartDetailsComponent implements OnInit {
.getVersion(repo, chartName, version)
.subscribe(chartVersion => {
this.currentVersion = chartVersion;
this.titleVersion = this.currentVersion.attributes.app_version || '';
this.updateMetaTags();
});
this.titleVersion = params['version'] || '';
this.updateMetaTags();
this.iconUrl = this.getIconUrl();
});
});
Expand Down
2 changes: 1 addition & 1 deletion src/ui/src/app/shared/seo.data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default {
'Helm Charts'
},
details: {
title: 'Latest { name } for Kubernetes',
title: '{ name } for Kubernetes',
description: 'Deploy the latest { name } in Kubernetes. { description }'
},
detailsWithVersion: {
Expand Down

0 comments on commit 6aef4b4

Please sign in to comment.