refactor(ui): refine action inputs
authorJérôme Benoit <jerome.benoit@sap.com>
Sun, 18 Feb 2024 19:26:35 +0000 (20:26 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Sun, 18 Feb 2024 19:26:35 +0000 (20:26 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
ui/web/src/components/actions/SetSupervisionUrl.vue

index d9de85d8951a11d5390bd5469724aa051a93be16..06f7be294d4a776796992fb5ffb6237cc3d4c44b 100644 (file)
@@ -7,7 +7,7 @@
     v-model.trim="state.supervisionUrl"
     type="url"
     name="supervision-url"
-    placeholder="supervision url"
+    placeholder="wss://"
   />
   <br />
   <Button
@@ -42,7 +42,7 @@ const props = defineProps<{
 }>()
 
 const state = reactive({
-  supervisionUrl: 'ws://'
+  supervisionUrl: ''
 })
 
 const uiClient = getCurrentInstance()?.appContext.config.globalProperties.$uiClient