File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ function showMaxColumn(props: Typings.Action.Setting.Params): number {
43
43
}
44
44
let canAdd = true ;
45
45
let canRemove = groupOwner === Delegate . user . getMine ( ) . userId ;
46
- const maxRow = 3 ;
46
+ const maxRow = 6 ;
47
47
const showCount = column * maxRow - ( canAdd ? 1 : 0 ) - ( canRemove ? 1 : 0 ) ;
48
48
return showCount ;
49
49
}
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ export default class extends React.PureComponent<Props> {
107
107
108
108
protected _getDataSource ( ) : string [ ] [ ] {
109
109
const column = this . _calculateColumn ( ) ;
110
- const maxRow = 3 ;
110
+ const maxRow = 6 ;
111
111
const { canAdd, canRemove, data} = this . props ;
112
112
const showCount = column * maxRow - ( canAdd ? 1 : 0 ) - ( canRemove ? 1 : 0 ) ;
113
113
const newData = [ ...data . slice ( 0 , showCount ) ] ;
You can’t perform that action at this time.
0 commit comments