Drupal - How to discard unsaved changes to a view when editing it leads to a WSOD?
A quick fix would be to delete the data from the expirable key/value store:
\Drupal::keyValueExpirable('tempstore.shared.views')
->delete('view_id');
Alternatively you could wait a week until it expires itself - probably not practical :)