Merge pull request #6276 from GabrielInTheWorld/motion-block-and-list-width
Makes the motion block detail and motion list more user friendly
This commit is contained in:
commit
adb9d95ff3
@ -61,15 +61,18 @@ export class UserStatisticsComponent extends BaseViewComponentDirective {
|
||||
public readonly columnDefinition: PblColumnDefinition[] = [
|
||||
{
|
||||
prop: 'structureLevel',
|
||||
label: 'Structure level'
|
||||
label: 'Structure level',
|
||||
width: '100%'
|
||||
},
|
||||
{
|
||||
prop: 'durationOfWordRequests',
|
||||
label: this.translate.instant('Duration of requests to speak')
|
||||
label: this.translate.instant('Duration of requests to speak'),
|
||||
maxWidth: 100
|
||||
},
|
||||
{
|
||||
prop: 'numberOfWordRequests',
|
||||
label: this.translate.instant('Number of requests to speak')
|
||||
label: this.translate.instant('Number of requests to speak'),
|
||||
maxWidth: 60
|
||||
}
|
||||
];
|
||||
|
||||
|
@ -60,7 +60,7 @@ export class MotionBlockDetailComponent extends BaseListViewComponent<ViewMotion
|
||||
{
|
||||
prop: 'recommendation',
|
||||
label: this.translate.instant('Recommendation'),
|
||||
minWidth: 60
|
||||
minWidth: 240
|
||||
},
|
||||
{
|
||||
prop: 'remove',
|
||||
|
@ -129,7 +129,7 @@ export class MotionListComponent extends BaseListViewComponent<ViewMotion> imple
|
||||
},
|
||||
{
|
||||
prop: 'state',
|
||||
minWidth: 160
|
||||
minWidth: 240
|
||||
}
|
||||
];
|
||||
|
||||
|
@ -146,7 +146,7 @@ export class UserListComponent extends BaseListViewComponent<ViewUser> implement
|
||||
},
|
||||
{
|
||||
prop: 'group',
|
||||
minWidth: 200
|
||||
minWidth: 240
|
||||
},
|
||||
{
|
||||
prop: 'infos',
|
||||
|
Loading…
Reference in New Issue
Block a user