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() {
|
||||
return id => {
|
||||
return this.types.find(a => {
|
||||
return a.id === id
|
||||
}).name
|
||||
const type = this.types.find(a => {
|
||||
return a.id === id
|
||||
})
|
||||
return type ? type.name : null
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue