File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 33
33
?pressed =" {{ _iconPressed }} "
34
34
@click =" {{ _arrowClick }} "
35
35
dir =" {{ dir }} "
36
- accessibleName =" {{ _accessibleNameText }} "
36
+ accessibleName =" {{ _iconAccessibleNameText }} "
37
37
></ui5-icon >
38
38
{{ /unless }}
39
39
</div >
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import {
13
13
VALUE_STATE_ERROR ,
14
14
VALUE_STATE_WARNING ,
15
15
INPUT_SUGGESTIONS_TITLE ,
16
+ ICON_ACCESSIBLE_NAME ,
16
17
} from "./generated/i18n/i18n-defaults.js" ;
17
18
18
19
// Templates
@@ -479,6 +480,10 @@ class ComboBox extends UI5Element {
479
480
return this . i18nBundle . getText ( INPUT_SUGGESTIONS_TITLE ) ;
480
481
}
481
482
483
+ get _iconAccessibleNameText ( ) {
484
+ return this . i18nBundle . getText ( ICON_ACCESSIBLE_NAME ) ;
485
+ }
486
+
482
487
get inner ( ) {
483
488
return isPhone ( ) ? this . responsivePopover . querySelector ( ".ui5-input-inner-phone" ) : this . shadowRoot . querySelector ( "[inner-input]" ) ;
484
489
}
You can’t perform that action at this time.
0 commit comments