mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-13 08:28:22 +08:00
4 lines
112 B
TypeScript
4 lines
112 B
TypeScript
|
|
export function buildSelectOptions(list: Array<string>) {
|
||
|
|
return list.map((x) => ({ label: x, value: x }));
|
||
|
|
}
|