You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Additionally, there are several factors that might be affecting the input functionality of the search box:
Event Listeners: The search input box has several event listeners attached, such as compositionstart, compositionend, keydown, keyup, input, and mousedown. If imeSessionInProgress is true, it might prevent input handling [2].
CSS Styles: The input element has classes like bg-inherit, border-0, and outline-0, which could make the input less visible or appear disabled. The appearance-none class removes the default styling of the input element, which could also affect its visibility or functionality [3][4].
JavaScript Logic: The useBoolean hook manages the focus state of the search box, and the onClick event handler on the search box's container prevents event propagation, which could interfere with input [5].
You might want to check these aspects in your implementation to ensure that the search input box is functioning correctly.
Self Checks
Dify version
0.7.3
Cloud or Self Hosted
Cloud
Steps to reproduce
1.On the document page of the knowledge base, the search input box cannot input
✔️ Expected Behavior
The search input box allows you to input and search for matching results
❌ Actual Behavior
the search input box cannot input
The text was updated successfully, but these errors were encountered: