Bigger meta column width for tables

motion block detail, motion list, user list, user statistics
This commit is contained in:
GabrielInTheWorld 2021-11-13 08:58:19 +01:00 committed by Emanuel Schütze
parent a3d8dd01da
commit 6ac24f5f6c
4 changed files with 9 additions and 6 deletions

View File

@ -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
}
];

View File

@ -60,7 +60,7 @@ export class MotionBlockDetailComponent extends BaseListViewComponent<ViewMotion
{
prop: 'recommendation',
label: this.translate.instant('Recommendation'),
minWidth: 60
minWidth: 240
},
{
prop: 'remove',

View File

@ -129,7 +129,7 @@ export class MotionListComponent extends BaseListViewComponent<ViewMotion> imple
},
{
prop: 'state',
minWidth: 160
minWidth: 240
}
];

View File

@ -146,7 +146,7 @@ export class UserListComponent extends BaseListViewComponent<ViewUser> implement
},
{
prop: 'group',
minWidth: 200
minWidth: 240
},
{
prop: 'infos',