From ff076238036b7987e89e4cb17d2bc1391280961f Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Tue, 10 Oct 2023 21:31:14 +0200 Subject: [PATCH] Auto-focus the first parameter after selecting an action. --- .../backend/http/webapp/src/components/panels/Execute/Index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/platypush/backend/http/webapp/src/components/panels/Execute/Index.vue b/platypush/backend/http/webapp/src/components/panels/Execute/Index.vue index 457db24a..9550c71e 100644 --- a/platypush/backend/http/webapp/src/components/panels/Execute/Index.vue +++ b/platypush/backend/http/webapp/src/components/panels/Execute/Index.vue @@ -306,6 +306,7 @@ export default { this.actionDocsCache[this.action.name] = {} this.actionDocsCache[this.action.name].html = this.selectedDoc + this.$el.querySelector('.action-param-value')?.focus() this.response = undefined this.error = undefined },