diff --git a/changelog.md b/changelog.md index c739483..90d8d12 100644 --- a/changelog.md +++ b/changelog.md @@ -5,6 +5,7 @@ - Removed all sort of container bootstrapping (much faster boot) - Added image clean up - Replaced network clean up by vanilla docker prune + - Fixed display issue with container having no IP ## Version 0.13.0 - Display container stacks as a group in the UI diff --git a/client/src/pages/servapps/networks.jsx b/client/src/pages/servapps/networks.jsx index af5f00c..97edac3 100644 --- a/client/src/pages/servapps/networks.jsx +++ b/client/src/pages/servapps/networks.jsx @@ -31,12 +31,12 @@ export const NetworksColumns = (theme, isDark) => [ { title: 'IPAM gateway / mask', screenMin: 'lg', - field: (r) => r.IPAM.Config.map((config, index) => ( + field: (r) => r.IPAM.Config ? r.IPAM.Config.map((config, index) => (
{config.Gateway}
{config.Subnet}
- )), + )) : 'No Ip', }, { title: 'Created At',