File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ exports[`Side Bar Component renders Side Bar Component 1`] = `
184
184
},
185
185
]
186
186
}
187
- placeholder = " Select a data source"
187
+ placeholder = " Select a metric source"
188
188
selectedOptions = { Array []}
189
189
singleSelection = {
190
190
Object {
@@ -216,7 +216,7 @@ exports[`Side Bar Component renders Side Bar Component 1`] = `
216
216
onFocus = { [Function ]}
217
217
onOpenListClick = { [Function ]}
218
218
onRemoveOption = { [Function ]}
219
- placeholder = " Select a data source"
219
+ placeholder = " Select a metric source"
220
220
rootId = { [Function ]}
221
221
searchValue = " "
222
222
selectedOptions = { Array []}
@@ -259,7 +259,7 @@ exports[`Side Bar Component renders Side Bar Component 1`] = `
259
259
<p
260
260
className = " euiComboBoxPlaceholder"
261
261
>
262
- Select a data source
262
+ Select a metric source
263
263
</p >
264
264
<AutosizeInput
265
265
aria-controls = " "
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ export const DataSourcePicker = ({
17
17
selectedDataSource,
18
18
setSelectedDataSource,
19
19
} : DataSourcePickerMenuProps ) => {
20
- const onChange = ( selectedDataSource ) => {
21
- setSelectedDataSource ( selectedDataSource ) ;
20
+ const onChange = ( selectedMetricSource ) => {
21
+ setSelectedDataSource ( selectedMetricSource ) ;
22
22
} ;
23
23
24
24
return (
@@ -27,7 +27,7 @@ export const DataSourcePicker = ({
27
27
< h5 > Metrics source</ h5 >
28
28
</ EuiTitle >
29
29
< EuiComboBox
30
- placeholder = "Select a data source"
30
+ placeholder = "Select a metric source"
31
31
singleSelection = { { asPlainText : true } }
32
32
options = { DATASOURCE_OPTIONS }
33
33
selectedOptions = { selectedDataSource || [ ] }
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ Compatible with OpenSearch and OpenSearch Dashboards version 2.15.0
36
36
* [ Bug fix] Add conditional rendering for data connection page's tabs ([ #1756 ] ( https://github.com/opensearch-project/dashboards-observability/pull/1756 ) )
37
37
* removed update button from explorer ([ #1755 ] ( https://github.com/opensearch-project/dashboards-observability/pull/1755 ) )
38
38
* (query assist) remove caching agent id ([ #1734 ] ( https://github.com/opensearch-project/dashboards-observability/pull/1734 ) )
39
+ * added placeholder change for metrics picker ([ #1906 ] ( https://github.com/opensearch-project/dashboards-observability/pull/1906 ) )
39
40
40
41
### Maintenance
41
42
* Remove mocha from dependencies ([ #1890 ] ( https://github.com/opensearch-project/dashboards-observability/pull/1890 ) )
You can’t perform that action at this time.
0 commit comments