|
@@ -38,11 +38,11 @@ export default {
|
|
|
label: function () {
|
|
|
if (!this.box)
|
|
|
return false;
|
|
|
- if (this.box.label == null)
|
|
|
+ if (this.box.label_id == null)
|
|
|
return 'Unknown'
|
|
|
|
|
|
for (let label of this.labels)
|
|
|
- if (label.identifier === this.box.label)
|
|
|
+ if (label.identifier === this.box.label_id)
|
|
|
return label.name;
|
|
|
|
|
|
return 'Not found';
|