mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
Run prettier (#5436)
* run in /client * run in /viz-lib * bug: fix wrong line ts expect error * bug: fixed search pattern for prettier
This commit is contained in:
@@ -42,10 +42,7 @@ function prepareScatterSeries(series: any, options: any) {
|
||||
return series;
|
||||
}
|
||||
|
||||
function prepareBubbleSeries(series: any, options: any, {
|
||||
seriesColor,
|
||||
data
|
||||
}: any) {
|
||||
function prepareBubbleSeries(series: any, options: any, { seriesColor, data }: any) {
|
||||
const coefficient = options.coefficient || 1;
|
||||
series.mode = "markers";
|
||||
series.marker = {
|
||||
@@ -56,9 +53,7 @@ function prepareBubbleSeries(series: any, options: any, {
|
||||
return series;
|
||||
}
|
||||
|
||||
function prepareBoxSeries(series: any, options: any, {
|
||||
seriesColor
|
||||
}: any) {
|
||||
function prepareBoxSeries(series: any, options: any, { seriesColor }: any) {
|
||||
series.type = "box";
|
||||
series.mode = "markers";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user