File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -601,7 +601,6 @@ class Input extends UI5Element {
601
601
}
602
602
}
603
603
604
-
605
604
getInputValue ( ) {
606
605
const inputDOM = this . getDomRef ( ) ;
607
606
if ( inputDOM ) {
@@ -614,7 +613,7 @@ class Input extends UI5Element {
614
613
let inputDomRef ;
615
614
616
615
if ( isPhone ( ) ) {
617
- inputDomRef = this . getStaticAreaItemDomRef ( ) . querySelector ( ".ui5-input-inner-phone" ) ;
616
+ inputDomRef = this . Suggestions . responsivePopover . querySelector ( ".ui5-input-inner-phone" ) ;
618
617
}
619
618
620
619
if ( ! inputDomRef ) {
Original file line number Diff line number Diff line change @@ -278,6 +278,10 @@ class Suggestions {
278
278
}
279
279
280
280
async _respPopover ( ) {
281
+ if ( this . responsivePopover ) {
282
+ return this . responsivePopover ;
283
+ }
284
+
281
285
const staticAreaItem = await this . _getComponent ( ) . getStaticAreaItemDomRef ( ) ;
282
286
this . responsivePopover = staticAreaItem . querySelector ( "ui5-responsive-popover" ) ;
283
287
return this . responsivePopover ;
You can’t perform that action at this time.
0 commit comments