Add User Feedback buttons (#2275)

Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: huchenlei <huchenlei@proton.me>
This commit is contained in:
bymyself
2025-01-19 17:41:58 -07:00
committed by GitHub
parent 78bc635518
commit a1ed67fc74
21 changed files with 148 additions and 42 deletions

View File

@@ -538,6 +538,15 @@ export function useCoreCommands(): ComfyCommand[] {
if (workflowStore.activeWorkflow)
workflowService.closeWorkflow(workflowStore.activeWorkflow)
}
},
{
id: 'Comfy.Feedback',
icon: 'pi pi-megaphone',
label: 'Give Feedback',
versionAdded: '1.7.15',
function: () => {
dialogService.showFeedbackDialog()
}
}
]
}