Typing in a workspace page automatically inserts the characters in the awesomebar

Hello everyone, I have created some custom workspace with some html text fields to ease the way of entering data, the issue is, whenever I am in a workspace and I try to type in a text field, the characters I am inputting goes automatically into the awesomebar. Is there any way I can disable this behaviour?

Thank you.

Are you sure?

Please post screenshot/s.

It must be related to focus of input (tap/mouse cursor). Are you making focus, where you wish to enter data?

Following two pointer may help you:

  1. Try setting the tabindex attribute to focus the fields. This ensures that the input fields within your workspace are prioritized for focus.
<input type="text" tabindex="1">
  1. or you can add a small script to prevent this. Attach an event listener to your input fields to stop propagation to the Awesomebar.

If I have misunderstood, then you may elaborate your issue.

#RespectQuestion #EncourageNewUser