mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 04:15:28 +02:00
fix(docker-networks): use Network icon for networks [EE-6507] (#10913)
This commit is contained in:
parent
95358c204b
commit
ecd603db8c
5 changed files with 9 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
|||
import { Share2 } from 'lucide-react';
|
||||
import { Network } from 'lucide-react';
|
||||
|
||||
import { TableContainer, TableTitle } from '@@/datatables';
|
||||
import { DetailsTable } from '@@/DetailsTable';
|
||||
|
@ -18,7 +18,7 @@ export function NetworkOptionsTable({ options }: Props) {
|
|||
|
||||
return (
|
||||
<TableContainer>
|
||||
<TableTitle label="Network options" icon={Share2} />
|
||||
<TableTitle label="Network options" icon={Network} />
|
||||
<DetailsTable dataCy="networkDetails-networkOptionsTable">
|
||||
{networkEntries.map(([key, value]) => (
|
||||
<DetailsTable.Row key={key} label={key}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue