mirror of
https://github.com/getredash/redash.git
synced 2025-12-25 01:03:20 -05:00
Fix TypeScript warning: integet -> integer typo (#5637)
This commit is contained in:
@@ -65,7 +65,6 @@ function getDefaultFormatOptions(column: any) {
|
||||
datetime: visualizationsSettings.dateTimeFormat || "DD/MM/YYYY HH:mm",
|
||||
};
|
||||
const numberFormat = {
|
||||
// @ts-expect-error ts-migrate(2551) FIXME: Property 'integerFormat' does not exist on type '{... Remove this comment to see the full error message
|
||||
integer: visualizationsSettings.integerFormat || "0,0",
|
||||
float: visualizationsSettings.floatFormat || "0,0.00",
|
||||
};
|
||||
|
||||
@@ -40,7 +40,7 @@ export const visualizationsSettings = {
|
||||
LinkComponent: Link,
|
||||
dateFormat: "DD/MM/YYYY",
|
||||
dateTimeFormat: "DD/MM/YYYY HH:mm",
|
||||
integetFormat: "0,0",
|
||||
integerFormat: "0,0",
|
||||
floatFormat: "0,0.00",
|
||||
booleanValues: ["false", "true"],
|
||||
tableCellMaxJSONSize: 50000,
|
||||
|
||||
Reference in New Issue
Block a user