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
When we perform the undo action, is there a way to use undo action twice in a row ?
In my experince when u perform the undo action, the next undo action becomes a redo because the history tracker records the undo action as the last action we did,, Is there any way to implement history tracker as a stack ?
The text was updated successfully, but these errors were encountered:
This should be possible with some work. You can undo multiple changes with x.undo! :last => 3 today, but not by calling undo 3 times. I can see something like x.undo! :history => false or x.fundo! ;) PRs welcome!
When we perform the undo action, is there a way to use undo action twice in a row ?
In my experince when u perform the undo action, the next undo action becomes a redo because the history tracker records the undo action as the last action we did,, Is there any way to implement history tracker as a stack ?
The text was updated successfully, but these errors were encountered: