Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::row_style_options().
Node revisions do not support full posts or teasers, so remove them.
Overrides WizardPluginBase::row_style_options
protected function row_style_options() {
$options = parent::row_style_options();
unset($options['teasers']);
unset($options['full_posts']);
return $options;
}