Update logging level for parsed workflow and add refresh button to recipe controls

- Changed logging from info to debug for parsed workflow in RecipeRoutes to reduce log verbosity.
- Added a refresh button in the recipe controls section of the HTML template to allow users to reload the recipe list easily.
This commit is contained in:
Will Miao
2025-03-21 21:38:02 +08:00
parent fce58f3206
commit 30e9e7168f
2 changed files with 4 additions and 1 deletions

View File

@@ -26,6 +26,9 @@
<!-- Recipe controls -->
<div class="controls">
<div class="action-buttons">
<div title="Refresh recipe list" class="control-group">
<button onclick="recipeManager.loadRecipes(true)"><i class="fas fa-sync"></i> Refresh</button>
</div>
<div title="Import recipes" class="control-group">
<button onclick="importManager.showImportModal()"><i class="fas fa-file-import"></i> Import</button>
</div>