Skip to content

Commit 41fc3c0

Browse files
committed
Merge remote-tracking branch 'AlejandroCano/ResponsiveSearchControl'
2 parents 9cde3bb + 82ef576 commit 41fc3c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Signum.React/Scripts/Finder.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2129,7 +2129,7 @@ function initFormatRules(): FormatRule[] {
21292129

21302130
return (
21312131
<span className={multiLineClass}>
2132-
{cell.split(",").map((t, i) => <a key={i} href="tel:">{t.trim()}</a>).joinCommaHtml(",")}
2132+
{cell.split(",").map((t, i) => <a key={i} href={`tel:${t.trim()}`}>{t.trim()}</a>).joinCommaHtml(",")}
21332133
</span>
21342134
);
21352135
}, false, "telephone-link-cell")
@@ -2153,7 +2153,7 @@ function initFormatRules(): FormatRule[] {
21532153

21542154
return (
21552155
<span className={multiLineClass}>
2156-
<a href="mailto:">{cell}</a>
2156+
<a href={`mailto:${cell}`}>{cell}</a>
21572157
</span>
21582158
);
21592159
}, false, "email-link-cell")

0 commit comments

Comments
 (0)