diff --git a/app/components/pub/my-ui/combobox/index.ts b/app/components/pub/my-ui/combobox/index.ts index ce8325f0..82a3b3cd 100644 --- a/app/components/pub/my-ui/combobox/index.ts +++ b/app/components/pub/my-ui/combobox/index.ts @@ -6,12 +6,10 @@ export interface Item { } export function recStrToItem(input: Record): Item[] { - console.log(input) const items: Item[] = [] let idx = 0; for (const key in input) { if (input.hasOwnProperty(key)) { - const value = input[key] items.push({ value: key || ('unknown-' + idx), label: input[key] || ('unknown-' + idx),