diff --git a/.eslintrc.json b/.eslintrc.json index 6661d3f3..10496dc6 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -32,8 +32,6 @@ "@typescript-eslint/comma-dangle": 0, "@typescript-eslint/explicit-function-return-type": 0, "@typescript-eslint/no-empty-function": 0, - "@typescript-eslint/no-explicit-any": 1, - "@typescript-eslint/no-extra-semi": 0, "@typescript-eslint/no-unsafe-argument": 0, "@typescript-eslint/no-unsafe-assignment": 0, "@typescript-eslint/no-unsafe-call": 0, diff --git a/package.json b/package.json index 3f1e0c0c..4b7079c6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@catena-x/portal-shared-components", - "version": "2.1.7", + "version": "2.1.9", "description": "Catena-X Portal Shared Components", "author": "Catena-X Contributors", "license": "Apache-2.0", diff --git a/src/components/basic/Menu/MenuItem.tsx b/src/components/basic/Menu/MenuItem.tsx index 22b5d74c..399087b3 100644 --- a/src/components/basic/Menu/MenuItem.tsx +++ b/src/components/basic/Menu/MenuItem.tsx @@ -86,7 +86,7 @@ export const MenuItem = ({ onMouseEnter={onMouseEnter} onMouseLeave={onMouseLeave} onClick={(e) => { - ;(onClick == null || disable) ?? onClick(e) + (onClick == null || disable) ?? onClick(e) }} >