File tree 2 files changed +7
-7
lines changed
src/containers/TabletsFilters
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -243,8 +243,6 @@ const Filters = ({
243
243
< Select
244
244
multiple
245
245
label = "Node ID"
246
- showApply
247
- showItemMeta
248
246
width = { TabletsFilters . CONTROL_WIDTH }
249
247
popupWidth = { TabletsFilters . POPUP_WIDTH }
250
248
placeholder = "All"
@@ -255,7 +253,7 @@ const Filters = ({
255
253
return (
256
254
< div className = { b ( 'node' ) } >
257
255
< div > { option . content } </ div >
258
- < div className = { b ( 'node-meta' ) } > { option . meta } </ div >
256
+ < div className = { b ( 'node-meta' ) } title = { option . meta } > { option . meta } </ div >
259
257
</ div >
260
258
) ;
261
259
} }
@@ -267,7 +265,6 @@ const Filters = ({
267
265
< Select
268
266
multiple
269
267
label = "multiple"
270
- showApply
271
268
width = { TabletsFilters . CONTROL_WIDTH }
272
269
placeholder = "All"
273
270
options = { states }
@@ -280,7 +277,6 @@ const Filters = ({
280
277
< Select
281
278
multiple
282
279
label = "Types"
283
- showApply
284
280
width = { TabletsFilters . CONTROL_WIDTH }
285
281
placeholder = "All"
286
282
options = { types }
Original file line number Diff line number Diff line change 6
6
@include flex-container ();
7
7
8
8
& __node {
9
- display : flex ;
10
- flex-direction : column ;
9
+ overflow : hidden ;
11
10
12
11
font-size : var (--yc-text-body-1-font-size );
13
12
line-height : var (--yc-text-body-1-line-height );
14
13
}
15
14
16
15
& __node-meta {
16
+ overflow : hidden ;
17
+
18
+ white-space : nowrap ;
19
+ text-overflow : ellipsis ;
20
+
17
21
color : var (--yc-color-text-secondary );
18
22
}
19
23
You can’t perform that action at this time.
0 commit comments