Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ exports[`tasks view matches snapshot 1`] = `
"Header": "Task ID",
"accessor": "task_id",
"show": true,
"width": 300,
"width": 500,
},
Object {
"Aggregated": [Function],
Expand All @@ -551,6 +551,7 @@ exports[`tasks view matches snapshot 1`] = `
"Header": "Type",
"accessor": "type",
"show": true,
"width": 140,
},
Object {
"Cell": [Function],
Expand All @@ -570,7 +571,7 @@ exports[`tasks view matches snapshot 1`] = `
"Header": "Created time",
"accessor": "created_time",
"show": true,
"width": 120,
"width": 190,
},
Object {
"Cell": [Function],
Expand All @@ -589,6 +590,7 @@ exports[`tasks view matches snapshot 1`] = `
"accessor": "duration",
"filterable": false,
"show": true,
"width": 70,
},
Object {
"Aggregated": [Function],
Expand Down
6 changes: 4 additions & 2 deletions web-console/src/views/task-view/tasks-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ ORDER BY "rank" DESC, "created_time" DESC`;
{
Header: 'Task ID',
accessor: 'task_id',
width: 300,
width: 500,
Aggregated: () => '',
show: hiddenTaskColumns.exists('Task ID'),
},
Expand All @@ -755,6 +755,7 @@ ORDER BY "rank" DESC, "created_time" DESC`;
{
Header: 'Type',
accessor: 'type',
width: 140,
Cell: row => {
const value = row.value;
return (
Expand Down Expand Up @@ -799,7 +800,7 @@ ORDER BY "rank" DESC, "created_time" DESC`;
{
Header: 'Created time',
accessor: 'created_time',
width: 120,
width: 190,
Aggregated: () => '',
show: hiddenTaskColumns.exists('Created time'),
},
Expand Down Expand Up @@ -866,6 +867,7 @@ ORDER BY "rank" DESC, "created_time" DESC`;
{
Header: 'Duration',
accessor: 'duration',
width: 70,
filterable: false,
Cell: row => (row.value > 0 ? formatDuration(row.value) : ''),
Aggregated: () => '',
Expand Down