We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9d8275 commit daae446Copy full SHA for daae446
src/packages/next/components/licenses/select-license.tsx
@@ -36,19 +36,20 @@ export default function SelectLicense({
36
value={x.id}
37
key={x.id}
38
search={`${x.id} ${x.title} ${x.description} ${JSON.stringify(
39
- x.quota
+ x.quota,
40
)}`.toLowerCase()}
41
>
42
- {x.title?.trim() ? `${x.title} - ` : ''}<span style={{ fontFamily: "monospace" }}>{x.id}</span>
+ {x.title?.trim() ? `${x.title} - ` : ""}
43
+ <span style={{ fontFamily: "monospace" }}>{x.id}</span>
44
<br />
45
<Quota quota={x.quota} />
- </Option>
46
+ </Option>,
47
);
48
}
49
50
return (
51
<Select
- style={style}
52
+ style={{ ...style, ...(license ? { height: "80px" } : undefined) }}
53
disabled={disabled}
54
showSearch
55
allowClear
0 commit comments