diff --git a/src/components/fields/ArraySubTable/index.tsx b/src/components/fields/ArraySubTable/index.tsx index ce218b58..5abf2238 100644 --- a/src/components/fields/ArraySubTable/index.tsx +++ b/src/components/fields/ArraySubTable/index.tsx @@ -12,17 +12,17 @@ const SideDrawerField = lazy( ) ); const Settings = lazy( - () => import("./Settings" /* webpackChunkName: "Settings-ArraySubtable" */) + () => import("./Settings" /* webpackChunkName: "Settings-ArraySubTable" */) ); export const config: IFieldConfig = { type: FieldType.arraySubTable, - name: "Array-Sub-Table", + name: "Array SubTable (Alpha)", group: "Connection", dataType: "undefined", initialValue: null, icon: , settings: Settings, - description: "Connects to a array-table in the current row.", + description: "A sub-table representing an array of objects in the row", TableCell: withRenderTableCell(DisplayCell, null, "focus", { usesRowData: true, disablePadding: true, diff --git a/src/components/fields/GeoPoint/index.tsx b/src/components/fields/GeoPoint/index.tsx index 3f881b94..e1d04a23 100644 --- a/src/components/fields/GeoPoint/index.tsx +++ b/src/components/fields/GeoPoint/index.tsx @@ -1,5 +1,4 @@ import { lazy } from "react"; -import { GeoPoint } from "firebase/firestore"; import { IFieldConfig, FieldType } from "@src/components/fields/types"; import withRenderTableCell from "@src/components/Table/TableCell/withRenderTableCell"; @@ -15,7 +14,7 @@ const SideDrawerField = lazy( export const config: IFieldConfig = { type: FieldType.geoPoint, - name: "GeoPoint (Alpha)", + name: "GeoPoint", group: "Numeric", dataType: "{latitude:number; longitude:number}", initialValue: {},