We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When clicking the "Studio" button in the Agent Inbox interface, it opens two identical windows instead of one.
The issue appears to be caused by nested HTML elements in the button:
<a target="_blank" rel="noopener noreferrer" href="..."> <button class="...">Studio</button> </a>
Both elements might be capturing and processing the click event.
Either:
<button>
<a>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Description
When clicking the "Studio" button in the Agent Inbox interface, it opens two identical windows instead of one.
Current Behavior
Expected Behavior
Technical Details
The issue appears to be caused by nested HTML elements in the button:
Both elements might be capturing and processing the click event.
Suggested Fix
Either:
<button>
and style the<a>
tag as a button<button>
with JavaScript to handle the window openingEnvironment
The text was updated successfully, but these errors were encountered: