_selectedViewChanged()

in web/src/components/panels/result-panel.js [148:156]


  _selectedViewChanged(event) {
    this.view = event.target.value;

    this.shadowRoot.querySelector('#show-unchanged-group').style.display =
      this.view !== 'visual_delta' ? 'none' : '';

    this.shadowRoot.querySelector('#wrap-lines-group').style.display =
      this._showWrapLinesOption() ? '' : 'none';
  }