File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import Tooltip from '../atom/tooltip';
7
7
import { addEvent } from '../reporter-proxy' ;
8
8
import { autobind } from '../helpers' ;
9
9
10
+ const toolTipMessage = 'Click to view open GitHub pull requests' ;
11
+
10
12
export default class GithubTileView extends React . Component {
11
13
static propTypes = {
12
14
didClick : PropTypes . func . isRequired ,
@@ -37,7 +39,7 @@ export default class GithubTileView extends React.Component {
37
39
key = "tooltip"
38
40
manager = { this . props . tooltips }
39
41
target = { this . refTileNode }
40
- title = { `<div style="text-align: left; line-height: 1.2em;">${ 'hi' } </div>` }
42
+ title = { `<div style="text-align: left; line-height: 1.2em;">${ toolTipMessage } </div>` }
41
43
showDelay = { atom . tooltips . hoverDefaults . delay . show }
42
44
hideDelay = { atom . tooltips . hoverDefaults . delay . hide }
43
45
/>
You can’t perform that action at this time.
0 commit comments