1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

fix(docker-networks): use Network icon for networks [EE-6507] (#10913)

This commit is contained in:
Matt Hook 2024-01-04 18:54:04 +13:00 committed by GitHub
parent 95358c204b
commit ecd603db8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 9 deletions

View file

@ -1,4 +1,4 @@
import { Share2 } from 'lucide-react';
import { Network } from 'lucide-react';
import { EndpointSettings, NetworkSettings } from 'docker-types/generated/1.41';
import { createPersistedStore } from '@@/datatables/types';
@ -40,7 +40,7 @@ export function ContainerNetworksDatatable({
dataset={networks}
settingsManager={tableState}
title="Connected Networks"
titleIcon={Share2}
titleIcon={Network}
disableSelect
getRowCanExpand={(row) => !!row.original.GlobalIPv6Address}
isLoading={!dataset}