1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-02-08 15:58:45 +01:00

fix: internal id not removed before row update

This commit is contained in:
Fabio Di Stasio 2021-05-20 12:45:49 +02:00
parent 1e37f2a96f
commit 0f10c9e824

View File

@ -19,6 +19,7 @@ export default class {
}
static updateTableCell (params) {
delete params.row._id;
return ipcRenderer.invoke('update-table-cell', params);
}