Commit 3d528e23 authored by Filipa Lacerda's avatar Filipa Lacerda

Fix broken tests for project list and header

parent 3ea65bae
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
return !this.isLoading && Object.keys(this.job).length; return !this.isLoading && Object.keys(this.job).length;
}, },
jobStarted() { jobStarted() {
return this.job.started !== undefined; return this.job.started;
}, },
}, },
watch: { watch: {
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
required: true, required: true,
}, },
avatarUrl: { avatarUrl: {
type: String, type: [String, Object],
required: true, required: true,
validator(value) { validator(value) {
return value === null || typeof value === 'string'; return value === null || typeof value === 'string';
......
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