3
0
Fork 0

fix: detach row from batch when removing

This commit is contained in:
Lance Edgar 2025-01-08 12:05:01 -06:00
parent 48f9374724
commit 0bb0a51f32

View file

@ -328,6 +328,8 @@ class BatchHandler(GenericHandler):
deletes the row.
"""
session = self.app.get_session(row)
batch = row.batch
batch.rows.remove(row)
session.delete(row)
def refresh_batch_status(self, batch):