Bigger meta column width for tables
motion block detail, motion list, user list, user statistics
This commit is contained in:
parent
a3d8dd01da
commit
6ac24f5f6c
@ -61,15 +61,18 @@ export class UserStatisticsComponent extends BaseViewComponentDirective {
|
|||||||
public readonly columnDefinition: PblColumnDefinition[] = [
|
public readonly columnDefinition: PblColumnDefinition[] = [
|
||||||
{
|
{
|
||||||
prop: 'structureLevel',
|
prop: 'structureLevel',
|
||||||
label: 'Structure level'
|
label: 'Structure level',
|
||||||
|
width: '100%'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'durationOfWordRequests',
|
prop: 'durationOfWordRequests',
|
||||||
label: this.translate.instant('Duration of requests to speak')
|
label: this.translate.instant('Duration of requests to speak'),
|
||||||
|
maxWidth: 100
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'numberOfWordRequests',
|
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',
|
prop: 'recommendation',
|
||||||
label: this.translate.instant('Recommendation'),
|
label: this.translate.instant('Recommendation'),
|
||||||
minWidth: 60
|
minWidth: 240
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remove',
|
prop: 'remove',
|
||||||
|
@ -129,7 +129,7 @@ export class MotionListComponent extends BaseListViewComponent<ViewMotion> imple
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'state',
|
prop: 'state',
|
||||||
minWidth: 160
|
minWidth: 240
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -146,7 +146,7 @@ export class UserListComponent extends BaseListViewComponent<ViewUser> implement
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'group',
|
prop: 'group',
|
||||||
minWidth: 200
|
minWidth: 240
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'infos',
|
prop: 'infos',
|
||||||
|
Loading…
Reference in New Issue
Block a user