Skip to content

Commit

Permalink
fix: add hover enter delay for ask ai button (#7872)
Browse files Browse the repository at this point in the history
  • Loading branch information
donteatfriedrice committed Aug 14, 2024
1 parent 99e70c9 commit ad42418
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export class AskAIButton extends WithDisposable(LitElement) {
.ask-ai-button {
border-radius: 4px;
position: relative;
user-select: none;
}
.ask-ai-icon-button {
Expand Down Expand Up @@ -110,7 +111,10 @@ export class AskAIButton extends WithDisposable(LitElement) {
},
};
},
{ allowMultiple: true }
{
allowMultiple: true,
enterDelay: 100,
}
);

@property({ attribute: false })
Expand Down

0 comments on commit ad42418

Please sign in to comment.