File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ export const defaultQuery: Partial<CmkQuery> = {
6060} ;
6161
6262export type Edition = 'CEE' | 'RAW' ;
63- export type Backend = 'web' | ' rest';
63+ export type Backend = 'rest' ;
6464
6565export interface DataSourceOptions extends DataSourceJsonData {
6666 url ?: string ;
Original file line number Diff line number Diff line change @@ -76,11 +76,7 @@ export const QueryEditor = (props: Props): React.JSX.Element => {
7676 let params = { } ;
7777 if ( datasource . getEdition ( ) === 'RAW' ) {
7878 ident = qGraphType === 'single_metric' ? 'monitored_metrics' : 'available_graphs' ;
79- params = { strict : 'with_source' } ;
80- // 2.1.0 changed { strict: 'with_source' } to:
81- // strict: true,
82- // show_independent_of_context: false,
83- // but the defaults for missing values seem to be in our favour.
79+ params = { strict : true , show_independent_of_context : false } ;
8480 } else {
8581 ident = 'combined_graphs' ;
8682 params = {
You can’t perform that action at this time.
0 commit comments