Skip to content

Commit

Permalink
0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
prode81 committed Nov 27, 2023
1 parent 646683c commit d8ecdb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@daimler/ftk-core",
"version": "0.4.3",
"version": "0.4.4",
"description": "Mercedes-Benz MO360 Frontend Toolkit | Core",
"license": "MIT",
"author": "Mercedes-Benz Tech Innovation GmbH",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/di/hoc/inject.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { IDiContainer } from '../..';

export default function inject(serviceId?: string | symbol | interfaces.Newable<{}>) {
return (target: any, propertyKey: string) => {
Object.defineProperty(target, propertyKey, {
return Object.defineProperty(target, propertyKey, {
enumerable: true,
configurable: true,
get() {
Expand Down

0 comments on commit d8ecdb8

Please sign in to comment.