bugfix in ##172, forgot to load types second time
This commit is contained in:
parent
ef733e040a
commit
715d216efb
|
@ -463,9 +463,10 @@ export default {
|
||||||
},
|
},
|
||||||
computeType() {
|
computeType() {
|
||||||
return id => {
|
return id => {
|
||||||
return this.types.find(a => {
|
const type = this.types.find(a => {
|
||||||
return a.id === id
|
return a.id === id
|
||||||
}).name
|
})
|
||||||
|
return type ? type.name : null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue