Skip to content

Commit

Permalink
[Execute UI] Fixed glitch when switching action args.
Browse files Browse the repository at this point in the history
  • Loading branch information
blacklight committed Nov 4, 2024
1 parent d15d744 commit 4759da3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 ||
Expand Down

0 comments on commit 4759da3

Please sign in to comment.