From f3c4f4dc12e840b619e0504c6e2d45b4faf7e984 Mon Sep 17 00:00:00 2001 From: Edan Bainglass Date: Tue, 4 Feb 2025 05:18:15 +0000 Subject: [PATCH] Make pseudopotential subsection title consistent --- .../app/configuration/advanced/pseudos/pseudos.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/aiidalab_qe/app/configuration/advanced/pseudos/pseudos.py b/src/aiidalab_qe/app/configuration/advanced/pseudos/pseudos.py index a9fdbeb80..be601cf08 100644 --- a/src/aiidalab_qe/app/configuration/advanced/pseudos/pseudos.py +++ b/src/aiidalab_qe/app/configuration/advanced/pseudos/pseudos.py @@ -73,12 +73,6 @@ def render(self): (self.family_help, "value"), ) - self.functional_prompt = ipw.HTML(""" -
- Exchange-correlation functional -
- """) - self.functional_help = ipw.HTML("""
The exchange-correlation energy is calculated using this functional. @@ -146,7 +140,7 @@ def render(self): """), ipw.VBox( children=[ - self.functional_prompt, + ipw.HTML("

Exchange-correlation functional

"), self.functional, self.functional_help, ],