mirror of https://github.com/portainer/portainer
fix(helm): add clarifying text and new badge to helm user repo settings table [EE-6609] (#11018)
parent
2248ce0173
commit
441a8bbbbf
@ -1,3 +1,17 @@
|
||||
import { Badge } from '@@/Badge';
|
||||
|
||||
import { columnHelper } from './helper';
|
||||
|
||||
export const url = columnHelper.accessor('URL', { id: 'url' });
|
||||
export const url = columnHelper.accessor('URL', {
|
||||
id: 'url',
|
||||
cell: ({ row }) => (
|
||||
<div className="flex">
|
||||
{row.original.URL}
|
||||
{row.original.Global && (
|
||||
<Badge type="success" className="ml-2">
|
||||
Globally-set
|
||||
</Badge>
|
||||
)}
|
||||
</div>
|
||||
),
|
||||
});
|
||||
|
Loading…
Reference in new issue