From bba1e59f57fa74aaf085f667a56be9b6379529e6 Mon Sep 17 00:00:00 2001 From: David Crespo Date: Wed, 30 Oct 2024 11:39:31 -0500 Subject: [PATCH] fix rendering of empty IP pool description --- app/components/form/fields/ip-pool-item.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/form/fields/ip-pool-item.tsx b/app/components/form/fields/ip-pool-item.tsx index eafed84c71..cc977e0639 100644 --- a/app/components/form/fields/ip-pool-item.tsx +++ b/app/components/form/fields/ip-pool-item.tsx @@ -21,7 +21,7 @@ export function toIpPoolItem(p: SiloIpPool) { )} - {p.description.length && ( + {!!p.description && (
{p.description}
)}