1
0
Fork 0
mirror of synced 2024-07-10 08:46:05 +12:00

Use tableId parameter when saving rows from button action

This commit is contained in:
Andrew Kingston 2021-07-22 16:50:35 +01:00
parent cfab8d2713
commit 7343c947ae

View file

@ -4,7 +4,7 @@ import { saveRow, deleteRow, executeQuery, triggerAutomation } from "../api"
import { ActionTypes } from "../constants"
const saveRowHandler = async (action, context) => {
const { fields, providerId } = action.parameters
const { fields, providerId, tableId } = action.parameters
if (providerId) {
let draft = context[providerId]
if (fields) {
@ -12,6 +12,9 @@ const saveRowHandler = async (action, context) => {
draft[field] = value
}
}
if (tableId) {
draft.tableId = tableId
}
await saveRow(draft)
}
}