Skip to content

Commit

Permalink
fix: operations kind button width (#1521)
Browse files Browse the repository at this point in the history
  • Loading branch information
astandrik authored Oct 23, 2024
1 parent e27749a commit 980d4fa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/containers/Operations/Operations.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.operations {
&__search {
width: 220px;
}
}
3 changes: 3 additions & 0 deletions src/containers/Operations/OperationsControls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import {OPERATION_KINDS} from './constants';
import i18n from './i18n';
import {b} from './shared';

import './Operations.scss';

interface OperationsControlsProps {
kind: OperationKind;
searchValue: string;
Expand Down Expand Up @@ -39,6 +41,7 @@ export function OperationsControls({
/>
<Select
value={[kind]}
width={150}
options={OPERATION_KINDS}
onUpdate={(value) => handleKindChange(value[0] as OperationKind)}
/>
Expand Down

0 comments on commit 980d4fa

Please sign in to comment.