mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-04 06:06:16 +02:00
refactor(frontend): fix enum types in scripts/form (#11138)
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
type EnumItem = string | {label: string; value: string;};
|
||||
export type FormItem = {
|
||||
label?: string;
|
||||
type: 'string';
|
||||
@@ -20,7 +21,7 @@ export type FormItem = {
|
||||
type: 'enum';
|
||||
default: string | null;
|
||||
hidden?: boolean;
|
||||
enum: string[];
|
||||
enum: EnumItem[];
|
||||
} | {
|
||||
label?: string;
|
||||
type: 'radio';
|
||||
|
||||
Reference in New Issue
Block a user