This commit is contained in:
ISA
2025-06-24 15:07:00 +02:00
parent b6c6fad3b3
commit 4070429193
60 changed files with 87 additions and 214 deletions

View File

@@ -159,7 +159,7 @@ const PoiUpdateModal = ({ onClose, poiData }) => {
>
<div className="flex flex-col mb-4">
<label htmlFor="description" className="block mb-2 font-bold text-sm text-gray-700">
Beschreibung:
Bezeichnung:
</label>
<input
type="text"
@@ -167,7 +167,7 @@ const PoiUpdateModal = ({ onClose, poiData }) => {
name="description"
value={description}
onChange={e => setDescription(e.target.value)}
placeholder="Beschreibung der Station"
placeholder="Bezeichnung eingeben..."
className="block p-2 w-full border-2 border-gray-200 rounded-md text-sm"
/>
</div>