mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
MinMax: Highlight issues with skipping field overrides (#33672)
* MinMax: Highlight issues with skipping field overrides * check global range * more selective * basic test * moved into getFieldDisplayValues Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
This commit is contained in:
@@ -114,7 +114,12 @@ export class PanelQueryRunner {
|
||||
fields: frame.fields.map((field, fieldIndex) => ({
|
||||
...field,
|
||||
values: data.series[frameIndex].fields[fieldIndex].values,
|
||||
state: {},
|
||||
state: {
|
||||
...field.state,
|
||||
calcs: undefined,
|
||||
// add global range calculation here? (not optimal for streaming)
|
||||
range: undefined,
|
||||
},
|
||||
})),
|
||||
})),
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user