Skip to content

Commit

Permalink
Disabling the euphonic part
Browse files Browse the repository at this point in the history
just done via settings always `needs_euphonic_tab = False`.
  • Loading branch information
mikibonacci committed Dec 6, 2024
1 parent baa9d5a commit e454b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aiidalab_qe_vibroscopy/app/result/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def render(self):
)
tab_data.append(("Dielectric Properties", dielectric_widget))

needs_euphonic_tab = self._model.needs_euphonic_tab()
needs_euphonic_tab = False # self._model.needs_euphonic_tab()
if needs_euphonic_tab:
euphonic_model = EuphonicModel()
euphonic_widget = EuphonicWidget(
Expand Down

0 comments on commit e454b16

Please sign in to comment.