Merge remote-tracking branch 'origin/bonus-ai' into bonus-ai
This commit is contained in:
commit
f0bd4a1b27
|
|
@ -241,10 +241,10 @@ export default {
|
||||||
let reviewers = [];
|
let reviewers = [];
|
||||||
this.tableData.forEach((item) => {
|
this.tableData.forEach((item) => {
|
||||||
if (item.type === '0') {
|
if (item.type === '0') {
|
||||||
reviewers.push(item.id);
|
reviewers.push(item);
|
||||||
}
|
}
|
||||||
if (item.type === '1') {
|
if (item.type === '1') {
|
||||||
annotators.push(item.id);
|
annotators.push(item);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
this.form.annotators = annotators;
|
this.form.annotators = annotators;
|
||||||
|
|
|
||||||
|
|
@ -224,10 +224,10 @@ export default {
|
||||||
let reviewers = []
|
let reviewers = []
|
||||||
this.tableData.forEach((item) => {
|
this.tableData.forEach((item) => {
|
||||||
if (item.type === '0') {
|
if (item.type === '0') {
|
||||||
reviewers.push(item.id)
|
reviewers.push(item)
|
||||||
}
|
}
|
||||||
if (item.type === '1') {
|
if (item.type === '1') {
|
||||||
annotators.push(item.id)
|
annotators.push(item)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
this.form.annotators = annotators
|
this.form.annotators = annotators
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue