mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-04 19:53:19 +08:00
Change min width for tasks table due date and status columns [SCI-10544]
This commit is contained in:
parent
60fe1ec34b
commit
414fa7abfb
2 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
}
|
||||
];
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue