16460 remove spaces from telephone dialing

This commit is contained in:
Arthur Hanson 2024-06-17 08:51:12 -07:00 committed by Jeremy Stretch
parent cd9244fd4f
commit 207c91ef6b

View File

@ -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):