From 4cf0670941368a1e4086c918f0d67607468e1380 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sat, 2 Nov 2024 23:29:47 +0100 Subject: [PATCH] missing change --- src/Components/Input/TextInput.tsx | 1 - .../Map/Subcomponents/ItemPopupComponents/TextView.tsx | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Input/TextInput.tsx b/src/Components/Input/TextInput.tsx index 1d454e40..2c1248d3 100644 --- a/src/Components/Input/TextInput.tsx +++ b/src/Components/Input/TextInput.tsx @@ -11,7 +11,6 @@ type InputTextProps = { defaultValue?: string placeholder?: string autocomplete?: string - updateFormValue?: (value: string) => void } diff --git a/src/Components/Map/Subcomponents/ItemPopupComponents/TextView.tsx b/src/Components/Map/Subcomponents/ItemPopupComponents/TextView.tsx index 264d933e..fb749735 100644 --- a/src/Components/Map/Subcomponents/ItemPopupComponents/TextView.tsx +++ b/src/Components/Map/Subcomponents/ItemPopupComponents/TextView.tsx @@ -49,6 +49,7 @@ export const TextView = ({ if (url.match('^http://')) { shortUrl = url.split('http://')[1] } + return `[${shortUrl}](${url})` }) }