-
Notifications
You must be signed in to change notification settings - Fork 559
Open
Labels
Description
Describe the bug
While interacting with the table-tree example (examples/data-objects/table-tree), the application crashes with the following error in the browser console:
ReferenceError: fail is not defined.
This originates from the TableRowView component.
Once this exception is thrown, the underlying SharedTree enters an invalid state, and Fluid logs the following secondary error:
Invalid use of SharedTree after it was put into an invalid state
After this point, the container disconnects, and the session becomes unusable.
To Reproduce
Steps to reproduce the behavior:
- Navigate to:
examples/data-objects/table-tree - Install dependencies and run the example .
- Open the app in the browser (default:
http://localhost:8080). - Add a few rows to the table.
- Attempt to delete a row.
- Observe the error in the UI and browser console.
Expected behavior
- Performing UI operations (editing or deleting a row).
- The SharedTree should not be left in an invalid state due to a React component error.
