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 a9f79a3 commit aed54caCopy full SHA for aed54ca
src/containers/Operations/OperationsControls.tsx
@@ -37,11 +37,14 @@ export function OperationsControls({
37
placeholder={i18n('pleaceholder_search')}
38
className={b('search')}
39
/>
40
- <Select
41
- value={[kind]}
42
- options={OPERATION_KINDS}
43
- onUpdate={(value) => handleKindChange(value[0] as OperationKind)}
44
- />
+ <div>
+ <Select
+ value={[kind]}
+ width={150}
+ options={OPERATION_KINDS}
45
+ onUpdate={(value) => handleKindChange(value[0] as OperationKind)}
46
+ />
47
+ </div>
48
<EntitiesCount
49
label={i18n('label_operations')}
50
loading={entitiesLoading}
0 commit comments