Development

This commit is contained in:
Matthew Grotke 2026-05-26 00:07:35 -04:00
parent 1c1bddade3
commit 537de935e9
2 changed files with 19 additions and 10 deletions

View file

@ -270,7 +270,8 @@ def _timing_status_msg(entry_ts, action_label):
def _build_timing_msg(entry_ts, action_label='Configuration saved'):
if not _apply_changes_immediately():
return f'{action_label}. Visit Actions page to apply your changes.'
from markupsafe import Markup
return Markup(f'{action_label}. Visit <strong>Actions</strong> page to apply your changes.')
return _timing_status_msg(entry_ts, action_label)