diff --git a/src/components/fields/Action/ActionFab.tsx b/src/components/fields/Action/ActionFab.tsx index e79c3f23..7aa9c251 100644 --- a/src/components/fields/Action/ActionFab.tsx +++ b/src/components/fields/Action/ActionFab.tsx @@ -140,7 +140,7 @@ export default function ActionFab({ row, handleRun, }); - } else if (action === "undo" && config.undo.confirmation) { + } else if (action === "undo" && config.undo?.confirmation) { return confirm({ title: `${column.name} Confirmation`, body: config.undo.confirmation.replace(/\{\{(.*?)\}\}/g, replacer(row)), diff --git a/src/components/fields/Reference/index.tsx b/src/components/fields/Reference/index.tsx index a9327b64..9640e9e6 100644 --- a/src/components/fields/Reference/index.tsx +++ b/src/components/fields/Reference/index.tsx @@ -23,12 +23,12 @@ const SideDrawerField = lazy( export const config: IFieldConfig = { type: FieldType.reference, name: "Reference", - group: "Connectors", + group: "Connection", dataType: "reference", initialValue: null, initializable: true, icon: , - description: "Firestore field reference type", + description: "Firestore document reference", TableCell: withBasicCell(BasicCell), TableEditor: EditorCell, SideDrawerField,