mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2025-01-09 04:18:46 +08:00
fix: Scheduler list in Settings not displaying labels
This commit is contained in:
parent
17900e5140
commit
c7d24081e2
@ -10,9 +10,9 @@ import { map } from 'lodash-es';
|
||||
import { useCallback } from 'react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
|
||||
const data = map(SCHEDULER_LABEL_MAP, (value, label) => ({
|
||||
value,
|
||||
label,
|
||||
const data = map(SCHEDULER_LABEL_MAP, (label, name) => ({
|
||||
value: name,
|
||||
label: label,
|
||||
})).sort((a, b) => a.label.localeCompare(b.label));
|
||||
|
||||
export default function SettingsSchedulers() {
|
||||
|
Loading…
Reference in New Issue
Block a user