mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-05 01:25:38 -05:00
Fix time series (#2985)
* fix time series type string * remove unused code
This commit is contained in:
committed by
Karl Burtram
parent
2c007115f7
commit
a8eaf28884
@@ -275,7 +275,7 @@ export class ChartView implements IPanelView {
|
||||
dropdown.render(optionContainer);
|
||||
dropdown.onDidSelect(e => {
|
||||
if (this.options[option.configEntry] !== option.options[e.index]) {
|
||||
this.options[option.configEntry] = option.options[e.index];
|
||||
this.options[option.configEntry] = option.options[e.index] === 'timeSeries' ? 'line' : option.options[e.index];
|
||||
if (this.insight) {
|
||||
this.insight.options = this.options;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user