diff --git a/src/components/devices/http/device.vue b/src/components/devices/http/device.vue
index 1d1af79d..cfc63d01 100644
--- a/src/components/devices/http/device.vue
+++ b/src/components/devices/http/device.vue
@@ -4,40 +4,21 @@
Einstellungen für Http
(Modul: {{ $options.name }})
-
-
- Diese Angabe ist optional. Ist kein Port angegeben, so wird je
- nach Protokoll der Standardport genutzt.
+ Es wird eine komplette URL erwartet mit Angaben zum Protokoll,
+ IP oder Hostnamen, optional einem Port und einem Pfad.
+ Beispiel: "http://192.168.1.1:8080/json?data=1"
-
+
diff --git a/src/components/devices/json/device.vue b/src/components/devices/json/device.vue
index 74152853..5b2514ad 100644
--- a/src/components/devices/json/device.vue
+++ b/src/components/devices/json/device.vue
@@ -8,9 +8,9 @@
title="URL"
subtype="host"
required
- :model-value="configuration.ip_address"
+ :model-value="configuration.url"
@update:model-value="
- updateConfiguration($event, 'configuration.ip_address')
+ updateConfiguration($event, 'configuration.url')
"
>