Merge pull request #7399 from wandji20/wb-SCI-10544

Change min width for tasks table due date and status columns [SCI-10544]
This commit is contained in:
ajugo 2024-03-29 15:08:09 +01:00 committed by GitHub
commit 0f805d3896
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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'