Skip to content

Commit

Permalink
fix(ui): execute must not pop calendar input
Browse files Browse the repository at this point in the history
close #367

Co-authored-by: EmmanuelDarras <[email protected]>
  • Loading branch information
tchiotludo and EmmanuelDarras committed Apr 19, 2022
1 parent 460dbd5 commit b3a74d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/flows/FlowRun.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
mounted() {
setTimeout(() => {
const input = this.$el.querySelector("input")
if (input) {
if (input && !input.className.includes("mx-input")) {
input.focus()
}
}, 500)
Expand Down

0 comments on commit b3a74d1

Please sign in to comment.