File tree 2 files changed +3
-1
lines changed
src/sentry/static/sentry/app/views/organizationTeams
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 28
28
"react" : " ^0.13.3" ,
29
29
"react-bootstrap" : " ^0.13.0" ,
30
30
"react-document-title" : " ^1.0.2" ,
31
+ "react-lazy-load" : " ^1.0.4" ,
31
32
"react-router" : " ^0.13.3" ,
32
33
"react-sticky" : " ^2.5.2" ,
33
34
"reflux" : " ^0.3.0" ,
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
2
import Router from "react-router" ;
3
+ import LazyLoad from "react-lazy-load" ;
3
4
4
5
import api from "../../api" ;
5
6
import BarChart from "../../components/barChart" ;
@@ -110,7 +111,7 @@ var ExpandedTeamList = React.createClass({
110
111
</ h5 >
111
112
</ td >
112
113
< td className = "align-right project-chart" >
113
- { chartData && < BarChart points = { chartData } className = "sparkline" /> }
114
+ { chartData && < LazyLoad > < BarChart points = { chartData } className = "sparkline" /> </ LazyLoad > }
114
115
</ td >
115
116
</ tr >
116
117
) ;
You can’t perform that action at this time.
0 commit comments