feat: 新功能改进 #20

Merged
hera merged 57 commits from feat/next-improvements into main 2026-04-10 20:30:37 +00:00
Showing only changes of commit d42403f6ed - Show all commits

View File

@@ -1264,7 +1264,9 @@ function onTagPickerSave(tags) {
watch(() => recipeStore.recipes, () => {
if (auth.isAdmin) {
const pending = recipeStore.recipes.filter(r => r._owner_id && r._owner_id !== auth.user.id)
const pending = recipeStore.recipes
.filter(r => r._owner_id && r._owner_id !== auth.user.id)
.map(r => ({ ...r, _showAssign: false, _assignTo: '' }))
pendingRecipes.value = pending
pendingCount.value = pending.length
}