Fix broken tests for project list and header
This commit is contained in:
parent
3ea65baeef
commit
3d528e2334
2 changed files with 2 additions and 2 deletions
|
@ -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 @@
|
||||||
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';
|
||||||
|
|
Loading…
Reference in a new issue