fix: creator target view (#173)

This commit is contained in:
Aleksandra Usacheva 2020-08-26 18:34:06 +03:00 committed by GitHub
parent 8afdf6b64a
commit 956e30a990
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ export class PartyTargetService {
map((party) => { map((party) => {
const result = []; const result = [];
const target = this.getTarget(party, targetName); const target = this.getTarget(party, targetName);
target.forEach((item, id) => result.push({ item, id })); target.forEach((item, id) => result.push({ data: item, id, checked: false }));
return result; return result;
}) })
); );