Hello!
After spending some time debugging, I have finally figured out why my tx is returning null.
Here is a snippet of the tx code for modelChange
function modelChanged(evt: any): void {
if (!evt.isTransactionFinished) return
const tx: any = evt.object
console.log('tx', tx)
if (!tx) return
Why is it if I set undoManager to false, tx returns null? Is there a way to have undoManager turned off but still have transaction events fire?