Skip to content

Commit aed54ca

Browse files
committed
fix: operations kind button width
1 parent a9f79a3 commit aed54ca

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/containers/Operations/OperationsControls.tsx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,14 @@ export function OperationsControls({
3737
placeholder={i18n('pleaceholder_search')}
3838
className={b('search')}
3939
/>
40-
<Select
41-
value={[kind]}
42-
options={OPERATION_KINDS}
43-
onUpdate={(value) => handleKindChange(value[0] as OperationKind)}
44-
/>
40+
<div>
41+
<Select
42+
value={[kind]}
43+
width={150}
44+
options={OPERATION_KINDS}
45+
onUpdate={(value) => handleKindChange(value[0] as OperationKind)}
46+
/>
47+
</div>
4548
<EntitiesCount
4649
label={i18n('label_operations')}
4750
loading={entitiesLoading}

0 commit comments

Comments
 (0)