forked from platypush/platypush
[Execute UI] Fixed glitch when switching action args.
This commit is contained in:
parent
d15d744017
commit
4759da30eb
2 changed files with 5 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
|||
:quote="true"
|
||||
:select-on-tab="false"
|
||||
@input="onArgEdit(name, $event)"
|
||||
@blur="onSelect(name)"
|
||||
@blur="onSelect(null)"
|
||||
@focus="onSelect(name)" />
|
||||
<span class="required-flag" v-if="action.args[name].required">*</span>
|
||||
</label>
|
||||
|
|
|
@ -429,6 +429,10 @@ export default {
|
|||
},
|
||||
|
||||
async selectArgdoc(name) {
|
||||
if (!name?.length) {
|
||||
return
|
||||
}
|
||||
|
||||
this.selectedArg = name
|
||||
this.selectedArgdoc =
|
||||
this.actionDocsCache[this.action.name]?.[name]?.html ||
|
||||
|
|
Loading…
Reference in a new issue