1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 12:25:22 +02:00

feat(UI): Add repository url to Helm chart installation list items (#769)

This commit is contained in:
James Player 2025-06-05 10:14:39 +12:00 committed by GitHub
parent 24ff7a7911
commit caac45b834
3 changed files with 11 additions and 28 deletions

View file

@ -2,8 +2,6 @@ import React from 'react';
import { FallbackImage } from '@/react/components/FallbackImage';
import Svg from '@@/Svg';
import { Chart } from '../types';
import { HelmIcon } from './HelmIcon';
@ -40,15 +38,10 @@ export function HelmTemplatesListItem(props: HelmTemplatesListItemProps) {
<div className="col-sm-12 flex flex-wrap justify-between gap-2">
<div className="blocklist-item-line">
<span>
<span className="blocklist-item-title">{model.name}</span>
<span className="space-left blocklist-item-subtitle">
<span className="vertical-center">
<Svg icon="helm" className="icon icon-primary" />
</span>
<span> Helm </span>
</span>
</span>
<div>
<div className="blocklist-item-title">{model.name}</div>
<div className="small text-muted mt-1">{model.repo}</div>
</div>
</div>
<span className="blocklist-item-actions">{actions}</span>