1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-14 21:22:19 +00:00

Fixed two small bugs

This commit is contained in:
Bram Wiepjes 2022-07-24 13:28:47 +00:00
parent 739f33cbf4
commit d55f8ca427
2 changed files with 4 additions and 2 deletions
web-frontend/modules/database

View file

@ -190,7 +190,10 @@ export const registerRealtimeEvents = (realtime) => {
}
}
for (let i = 0; i < data.rows.length; i++) {
store.dispatch('rowModal/updated', { values: data.rows[i] })
store.dispatch('rowModal/updated', {
tableId: data.table_id,
values: data.rows[i],
})
}
})