Skip to content

Commit

Permalink
Emphasize "Step 2.2" in plugin outlines message
Browse files Browse the repository at this point in the history
  • Loading branch information
edan-bainglass committed Oct 28, 2024
1 parent 37e98dc commit a097ba9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/aiidalab_qe/app/configuration/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def _fetch_plugin_settings(self):
def toggle_plugin(change, identifier=identifier, info=info):
if change["new"]:
info.value = (
f"Customize {identifier} settings in step 2.2 if needed"
f"Customize {identifier} settings in <b>Step 2.2</b> if needed"
)
else:
info.value = ""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ def test_reminder_info():
assert bands_info.value == ""
bands_model = model.get_model("bands")
bands_model.include = True
assert bands_info.value == "Customize bands settings in step 2.2 if needed"
assert bands_info.value == "Customize bands settings in <b>step 2.2</b> if needed"
bands_model.include = False
assert bands_info.value == ""

0 comments on commit a097ba9

Please sign in to comment.