File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
packages/compass-aggregations/src/components/stage-preview Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import { connect } from 'react-redux' ;
3
- import { Body , Link , Tooltip , css } from '@mongodb-js/compass-components' ;
3
+ import { Body , Link , Tooltip } from '@mongodb-js/compass-components' ;
4
4
import type { RootState } from '../../modules' ;
5
5
import { getStageInfo } from '../../utils/stage' ;
6
6
import type { StoreStage } from '../../modules/pipeline-builder/stage-editor' ;
7
7
8
- const toolbarTextStyles = css ( {
9
- whiteSpace : 'nowrap' ,
10
- overflow : 'hidden' ,
11
- textOverflow : 'ellipsis' ,
12
- } ) ;
13
-
14
8
const OperatorLink : React . FunctionComponent < {
15
9
stageOperator : string ;
16
10
description ?: string ;
@@ -56,7 +50,7 @@ function StagePreviewHeader({
56
50
return null ;
57
51
}
58
52
return (
59
- < Body className = { toolbarTextStyles } >
53
+ < Body >
60
54
{ destination ? (
61
55
`Documents will be saved to ${ destination } .`
62
56
) : (
You can’t perform that action at this time.
0 commit comments