diff --git a/src/features/helm-charts/installing-chart/__snapshots__/opening-dock-tab-for-installing-helm-chart.test.ts.snap b/src/features/helm-charts/installing-chart/__snapshots__/opening-dock-tab-for-installing-helm-chart.test.ts.snap
index dcd2bb5dd1..8acd19726f 100644
--- a/src/features/helm-charts/installing-chart/__snapshots__/opening-dock-tab-for-installing-helm-chart.test.ts.snap
+++ b/src/features/helm-charts/installing-chart/__snapshots__/opening-dock-tab-for-installing-helm-chart.test.ts.snap
@@ -2773,7 +2773,11 @@ exports[`opening dock tab for installing helm chart given application is started
+ >
+
+ Some Foo<some@foo.com>
+
+
@@ -3676,7 +3680,11 @@ exports[`opening dock tab for installing helm chart given application is started
+ >
+
+ Some Foo<some@foo.com>
+
+
@@ -4589,7 +4597,11 @@ exports[`opening dock tab for installing helm chart given application is started
+ >
+
+ Some Foo<some@foo.com>
+
+
@@ -5492,7 +5504,11 @@ exports[`opening dock tab for installing helm chart given application is started
+ >
+
+ Some Foo<some@foo.com>
+
+
diff --git a/src/features/helm-charts/installing-chart/opening-dock-tab-for-installing-helm-chart.test.ts b/src/features/helm-charts/installing-chart/opening-dock-tab-for-installing-helm-chart.test.ts
index fa37f5d97f..c41a7f14ad 100644
--- a/src/features/helm-charts/installing-chart/opening-dock-tab-for-installing-helm-chart.test.ts
+++ b/src/features/helm-charts/installing-chart/opening-dock-tab-for-installing-helm-chart.test.ts
@@ -95,7 +95,10 @@ describe("opening dock tab for installing helm chart", () => {
urls: [],
annotations: {},
dependencies: [],
- maintainers: [],
+ maintainers: [{
+ email: "some@foo.com",
+ name: "Some Foo",
+ }],
deprecated: false,
}),
@@ -111,7 +114,10 @@ describe("opening dock tab for installing helm chart", () => {
urls: [],
annotations: {},
dependencies: [],
- maintainers: [],
+ maintainers: [{
+ email: "other@bar.com",
+ name: "Other Bar",
+ }],
deprecated: false,
}),
]);
@@ -162,7 +168,10 @@ describe("opening dock tab for installing helm chart", () => {
urls: [],
annotations: {},
dependencies: [],
- maintainers: [],
+ maintainers: [{
+ email: "some@foo.com",
+ name: "Some Foo",
+ }],
deprecated: false,
}),
@@ -178,7 +187,10 @@ describe("opening dock tab for installing helm chart", () => {
urls: [],
annotations: {},
dependencies: [],
- maintainers: [],
+ maintainers: [{
+ email: "other@bar.com",
+ name: "Other Bar",
+ }],
deprecated: false,
}),
]);
diff --git a/src/renderer/components/+helm-charts/helm-chart-details.tsx b/src/renderer/components/+helm-charts/helm-chart-details.tsx
index d15552dedb..cf2b781e66 100644
--- a/src/renderer/components/+helm-charts/helm-chart-details.tsx
+++ b/src/renderer/components/+helm-charts/helm-chart-details.tsx
@@ -117,16 +117,10 @@ class NonInjectedHelmChartDetails extends Component
- {selectedChart.getMaintainers().map(({ name, email, url }) => (
-
- {name}
-
- ))}
+ {selectedChart.getMaintainers()
+ .map(({ name, email }) => (
+ {`${name}<${email}>`}
+ ))}
{selectedChart.getKeywords().length > 0 && (