From 207c91ef6b1022f10f6f2574a17469f1891908eb Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Mon, 17 Jun 2024 08:51:12 -0700 Subject: [PATCH] 16460 remove spaces from telephone dialing --- netbox/utilities/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/utilities/tables.py b/netbox/utilities/tables.py index 7f179014a..141ca66d6 100644 --- a/netbox/utilities/tables.py +++ b/netbox/utilities/tables.py @@ -29,7 +29,7 @@ def linkify_phone(value): """ if value is None: return None - return f"tel:{value}" + return f"tel:{value.replace(' ', '')}" def register_table_column(column, name, *tables):