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 e27749a commit 980d4faCopy full SHA for 980d4fa
src/containers/Operations/Operations.scss
@@ -0,0 +1,5 @@
1
+.operations {
2
+ &__search {
3
+ width: 220px;
4
+ }
5
+}
src/containers/Operations/OperationsControls.tsx
@@ -10,6 +10,8 @@ import {OPERATION_KINDS} from './constants';
10
import i18n from './i18n';
11
import {b} from './shared';
12
13
+import './Operations.scss';
14
+
15
interface OperationsControlsProps {
16
kind: OperationKind;
17
searchValue: string;
@@ -39,6 +41,7 @@ export function OperationsControls({
39
41
/>
40
42
<Select
43
value={[kind]}
44
+ width={150}
45
options={OPERATION_KINDS}
46
onUpdate={(value) => handleKindChange(value[0] as OperationKind)}
47
0 commit comments