Change min width for tasks table due date and status columns [SCI-10544]

This commit is contained in:
wandji20 2024-03-29 10:34:34 +01:00
parent 60fe1ec34b
commit 414fa7abfb
2 changed files with 5 additions and 3 deletions

View file

@ -126,7 +126,8 @@ export default {
field: 'due_date',
headerName: this.i18n.t('experiments.table.column.due_date_html'),
sortable: true,
cellRenderer: DueDateRenderer
cellRenderer: DueDateRenderer,
minWidth: 200
},
{
field: 'results',
@ -143,7 +144,8 @@ export default {
field: 'status',
headerName: this.i18n.t('experiments.table.column.status_html'),
sortable: true,
cellRenderer: this.statusRenderer
cellRenderer: this.statusRenderer,
minWidth: 200
}
];

View file

@ -1545,7 +1545,7 @@ en:
column:
id_html: 'ID'
task_name_html: 'Task name'
due_date_html: 'Due'
due_date_html: 'Due date'
archived_html: 'Archived on'
age_html: 'Age'
results_html: 'Results'