mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
console: added cloned row values to payload if they exist
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6447 GitOrigin-RevId: 23e7dd1e5a4cd3c79835f750fff1404fdf134da2
This commit is contained in:
parent
be9c3e5a66
commit
631f3994c2
@ -130,7 +130,13 @@ export const TableInsertItemContainer = (
|
||||
return acc;
|
||||
}, {});
|
||||
|
||||
dispatch(insertItem(tableName, inputValues, isMigration)).then(() => {
|
||||
dispatch(
|
||||
insertItem(
|
||||
tableName,
|
||||
clone ? { ...clone, ...inputValues } : inputValues,
|
||||
isMigration
|
||||
)
|
||||
).then(() => {
|
||||
nextInsert();
|
||||
});
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user