Compare commits

...

1 Commits

Author SHA1 Message Date
ComfyUI Wiki
7e0890aa3a Temporarily remove VRAM sort option
Comment out the VRAM Usage (Low to High) sort option in WorkflowTemplateSelectorDialog.vue and add a TODO, since real VRAM usage data is not available. Keeps the code in-place (commented) so it can be re-enabled when a reliable VRAM metric is implemented.
2026-02-22 10:47:35 +08:00

View File

@@ -729,10 +729,11 @@ const sortOptions = computed(() => [
value: 'popular'
},
{ name: t('templateWorkflows.sort.newest', 'Newest'), value: 'newest' },
{
name: t('templateWorkflows.sort.vramLowToHigh', 'VRAM Usage (Low to High)'),
value: 'vram-low-to-high'
},
// TODO: Uncomment when we have a way to get the real VRAM usage
// {
// name: t('templateWorkflows.sort.vramLowToHigh', 'VRAM Usage (Low to High)'),
// value: 'vram-low-to-high'
// },
{
name: t(
'templateWorkflows.sort.modelSizeLowToHigh',