Skip to content

Commit

Permalink
Merge pull request #2031 from msuret/fix_service_list
Browse files Browse the repository at this point in the history
frontend: fix crash on service list page
  • Loading branch information
ashu8912 authored Jun 10, 2024
2 parents c0cb90f + 3d066e6 commit 8e8f58c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/service/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function ServiceList() {
{
id: 'ports',
label: t('Ports'),
getValue: service => service.getPorts().join(', '),
getValue: service => service.getPorts()?.join(', '),
render: service => <LabelListItem labels={service.getPorts()} />,
},
{
Expand Down

0 comments on commit 8e8f58c

Please sign in to comment.