You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the long run (but I guess that would require significant code changes) it would be awesome if there was an option to generate "baselines" i.e. snapshots of earlier planning stages that can be compared to the current time plan to identify common bottlenecks or planning mistakes etc.
The text was updated successfully, but these errors were encountered:
A quick suggestion on how you can implement this on your own:
Why don't you take the snapshot yourselves, i.e. save the tasks array to your database/storage of choice? Then you can retrieve and visualize it anytime you want.
For example:
submit your current tasks array to your backend and save it with a timestamp and a relation to an object (project probably...)
in each project, get a list of all timestamped related snapshots from your backend
render a select field and on selecting the relevant snapshot just switch the tasks prop to the snapshot data
In the long run (but I guess that would require significant code changes) it would be awesome if there was an option to generate "baselines" i.e. snapshots of earlier planning stages that can be compared to the current time plan to identify common bottlenecks or planning mistakes etc.
The text was updated successfully, but these errors were encountered: