mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
feat(web/input): display value when no label is provided for select
This commit is contained in:
@@ -5,7 +5,7 @@ type RowType = "input" | "checkbox" | "select";
|
||||
export interface Row {
|
||||
type: RowType;
|
||||
label: string;
|
||||
options?: { value: string; label: string }[];
|
||||
options?: { value: string; label?: string }[];
|
||||
password?: boolean;
|
||||
icon?: IconProp;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user