File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10
10
11
11
### Fixed
12
12
- FOR-1595: Placement of description for Edit Grid
13
+ - Select component Values template.
13
14
14
15
## 3.6.13
15
16
### Fixed
Original file line number Diff line number Diff line change @@ -48,9 +48,6 @@ export default class SelectComponent extends BaseComponent {
48
48
// Keep track of the select options.
49
49
this . selectOptions = [ ] ;
50
50
51
- // See if this should use the template.
52
- this . useTemplate = ( this . component . dataSrc !== 'values' ) && this . component . template ;
53
-
54
51
// If this component has been activated.
55
52
this . activated = false ;
56
53
@@ -89,7 +86,7 @@ export default class SelectComponent extends BaseComponent {
89
86
}
90
87
91
88
// Perform a fast interpretation if we should not use the template.
92
- if ( data && ! this . useTemplate ) {
89
+ if ( data && ! this . component . template ) {
93
90
const itemLabel = data . label || data ;
94
91
return ( typeof itemLabel === 'string' ) ? this . t ( itemLabel ) : itemLabel ;
95
92
}
You can’t perform that action at this time.
0 commit comments