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

Fixing Features layout

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-03-23 12:56:53 +03:00
parent c3570fb18f
commit 473975ca57

View File

@ -18,12 +18,12 @@ export class Features extends React.Component<Props> {
clusterFeatureRegistry clusterFeatureRegistry
.getItems() .getItems()
.map((f) => ( .map((f) => (
<InstallFeature key={f.title} cluster={cluster} feature={f.feature}> <section id={f.title} key={f.title}>
<section id={f.title}> <InstallFeature cluster={cluster} feature={f.feature}>
<h2>{f.title}</h2> <h2>{f.title}</h2>
<p><f.components.Description /></p> <p><f.components.Description /></p>
</section>
</InstallFeature> </InstallFeature>
</section>
)) ))
} }
</section> </section>