Commit 7519a25a authored by Filipa Lacerda's avatar Filipa Lacerda

Use `started` key to show the triggered date

parent 17e30a32
...@@ -42,6 +42,9 @@ export default { ...@@ -42,6 +42,9 @@ export default {
jobStarted() { jobStarted() {
return !this.job.started === false; return !this.job.started === false;
}, },
headerTime() {
return this.jobStarted ? this.job.started : this.job.created_at;
},
}, },
watch: { watch: {
job() { job() {
...@@ -73,7 +76,7 @@ export default { ...@@ -73,7 +76,7 @@ export default {
:status="status" :status="status"
item-name="Job" item-name="Job"
:item-id="job.id" :item-id="job.id"
:time="job.created_at" :time="headerTime"
:user="job.user" :user="job.user"
:actions="actions" :actions="actions"
:has-sidebar-button="true" :has-sidebar-button="true"
......
...@@ -13,6 +13,9 @@ describe('Job details header', () => { ...@@ -13,6 +13,9 @@ describe('Job details header', () => {
const threeWeeksAgo = new Date(); const threeWeeksAgo = new Date();
threeWeeksAgo.setDate(threeWeeksAgo.getDate() - 21); threeWeeksAgo.setDate(threeWeeksAgo.getDate() - 21);
const twoDaysAgo = new Date();
twoDaysAgo.setDate(twoDaysAgo.getDate() - 2);
props = { props = {
job: { job: {
status: { status: {
...@@ -31,7 +34,7 @@ describe('Job details header', () => { ...@@ -31,7 +34,7 @@ describe('Job details header', () => {
email: 'foo@bar.com', email: 'foo@bar.com',
avatar_url: 'link', avatar_url: 'link',
}, },
started: '2018-01-08T09:48:27.319Z', started: twoDaysAgo.toISOString(),
new_issue_path: 'path', new_issue_path: 'path',
}, },
isLoading: false, isLoading: false,
...@@ -69,7 +72,7 @@ describe('Job details header', () => { ...@@ -69,7 +72,7 @@ describe('Job details header', () => {
.querySelector('.header-main-content') .querySelector('.header-main-content')
.textContent.replace(/\s+/g, ' ') .textContent.replace(/\s+/g, ' ')
.trim(), .trim(),
).toEqual('failed Job #123 triggered 3 weeks ago by Foo'); ).toEqual('failed Job #123 triggered 2 days ago by Foo');
}); });
it('should render new issue link', () => { it('should render new issue link', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment