Merge pull request #7594 from manucirne/fix/issue/7155

Sort Jenkins biuld by timestemp in CITable
This commit is contained in:
Tim Hansen
2021-10-17 20:59:29 -06:00
committed by GitHub
2 changed files with 11 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-jenkins': patch
---
Sort Jenkins build by timestamp in `CITable`
@@ -80,6 +80,12 @@ const FailSkippedWidget = ({
};
const generatedColumns: TableColumn[] = [
{
title: 'Timestamp',
defaultSort: 'desc',
hidden: true,
field: 'lastBuild.timestamp',
},
{
title: 'Build',
field: 'fullName',