@bizdoc/core 1.13.0-next.12 → 1.13.0-next.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13956,14 +13956,13 @@ class TraceViewComponent extends TraceBase {
13956
13956
  if (to.length) {
13957
13957
  const users = [];
13958
13958
  for (let who of to) {
13959
- let profile = await me._accounts.get(who.substitutingId || who.userId).toPromise();
13959
+ let profile = await profileOf(who.substitutingId || who.userId);
13960
13960
  users.push(nameOf(profile));
13961
13961
  }
13962
13962
  return me._translate.get('ActionTo', name, me._translate.join(users));
13963
13963
  }
13964
13964
  }
13965
- else
13966
- return name;
13965
+ return name;
13967
13966
  }
13968
13967
  const trace = [];
13969
13968
  for (let l of log) {