mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00: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 { useCallback } from 'react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
const data = map(SCHEDULER_LABEL_MAP, (value, label) => ({
|
const data = map(SCHEDULER_LABEL_MAP, (label, name) => ({
|
||||||
value,
|
value: name,
|
||||||
label,
|
label: label,
|
||||||
})).sort((a, b) => a.label.localeCompare(b.label));
|
})).sort((a, b) => a.label.localeCompare(b.label));
|
||||||
|
|
||||||
export default function SettingsSchedulers() {
|
export default function SettingsSchedulers() {
|
||||||
|
Loading…
Reference in New Issue
Block a user