Skip to content

Commit

Permalink
Include workflow update time in workflow index
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Dec 16, 2024
1 parent c597c18 commit c6f3743
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions website/models/workflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export interface Workflow {
definition: WorkflowDefinition;
readme: string;
changelog: string;
updated: string;
diagrams: string;
trsID: string;
}
Expand Down
2 changes: 1 addition & 1 deletion website/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function selectWorkflow(workflow: Workflow) {
<template #footer>
<div class="flex space-x-4">
<p class="text-xs text-gray-500">Release {{ workflow.definition.release }}</p>
<p class="text-xs text-gray-500">(todo:last_update)</p>
<p class="text-xs text-gray-500">{{ workflow.updated}}</p>
</div>
</template>

Expand Down

0 comments on commit c6f3743

Please sign in to comment.