We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5b5a73 commit f314e4fCopy full SHA for f314e4f
packages/main/src/Select.ts
@@ -400,6 +400,10 @@ class Select extends UI5Element implements IFormInputElement {
400
}
401
402
403
+ _applyFocus() {
404
+ this.focus();
405
+ }
406
+
407
_onfocusin() {
408
this.focused = true;
409
packages/main/src/SelectPopoverTemplate.tsx
@@ -99,7 +99,7 @@ function valueStateMessage(this: Select) {
99
<>
100
{this.shouldDisplayDefaultValueStateMessage
101
? this.valueStateText
102
- : <slot name="valueStateMessage"></slot>
+ : <slot onClick={this._applyFocus} name="valueStateMessage"></slot>
103
104
</>
105
);
0 commit comments