上一个提交有笔误

This commit is contained in:
Xu Chang 2023-08-01 18:51:23 +08:00
parent 2e6c422e37
commit cf822a4915
2 changed files with 4 additions and 2 deletions

View File

@ -63,8 +63,9 @@ var ContextMenuFactory = /** @class */ (function (_super) {
(0, lodash_1.set)(filter, paths2.concat("".concat(attr, "Id")), entityId);
}
else {
return (0, lodash_1.set)(filter, "".concat(path, ".id"), entityId);
(0, lodash_1.set)(filter, "".concat(path, ".id"), entityId);
}
return filter;
}
return undefined;
}

View File

@ -87,8 +87,9 @@ export class ContextMenuFactory<
set(filter, paths2.concat(`${attr}Id`), entityId);
}
else {
return set(filter, `${path}.id`, entityId);
set(filter, `${path}.id`, entityId);
}
return filter;
}
return undefined;
}