mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 22:46:49 +00:00
fix: multiple after-update webhooks being triggered
Signed-off-by: mertmit <mertmit99@gmail.com>
This commit is contained in:
@@ -64,7 +64,8 @@ export default class RestApi {
|
||||
return { list, count }
|
||||
}
|
||||
|
||||
async update(id, data, oldData) {
|
||||
async update(id, data, oldData, cellSaved = false) {
|
||||
data._cellSaved = cellSaved
|
||||
const res = await this.$axios({
|
||||
method: 'put',
|
||||
url: `/nc/${this.$ctx.projectId}/api/v1/${this.table}/${encodeURIComponent(id)}`,
|
||||
|
||||
Reference in New Issue
Block a user