Skip to content

Commit 97cc162

Browse files
committed
change max table rows in 360 to 5
issue: #253
1 parent 3e64fb5 commit 97cc162

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/client/src/pages/DataView360/View/components/Donations.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const customStyles = theme => ({
2626
}
2727
});
2828

29-
const ROWS_TO_SHOW = 3
29+
const ROWS_TO_SHOW = 5
3030

3131
class Donations extends Component {
3232
constructor(props) {
@@ -66,7 +66,7 @@ class Donations extends Component {
6666
<AttachMoneyIcon color='primary' fontSize='inherit'/>
6767
</Grid>
6868
<Grid item>
69-
Financial Support Activity (Top 3)
69+
Financial Support Activity (Top 5)
7070
</Grid>
7171
</Grid>
7272
</Typography>

src/client/src/pages/DataView360/View/components/Volunteer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const customStyles = theme => ({
2727
},
2828
});
2929

30-
const SHIFTS_TO_SHOW = 3;
30+
const SHIFTS_TO_SHOW = 5;
3131

3232
class Volunteer extends Component {
3333

@@ -93,7 +93,7 @@ class Volunteer extends Component {
9393
<TimelineIcon color='primary' fontSize='inherit'/>
9494
</Grid>
9595
<Grid item>
96-
Volunteer History (Top 3)
96+
Volunteer History (Top 5)
9797
</Grid>
9898
</Grid>
9999
</Typography>

0 commit comments

Comments
 (0)