Skip to content

Commit

Permalink
Fix several bugs
Browse files Browse the repository at this point in the history
* increase performance of loading large model #77
* #78
* #69
* Enumeration values are not handled correctly
* For a structured value model, switching models leads to losing connections
* When editing entity, the text "Entity should be upper case" appears twice
* On List Characteristic user can choose a datatype or elementCharacteristic but not both
* Filter mode: Case when new connections are displayed after switching between models
* Data type doesn't change when you select another the Characteristic class
  • Loading branch information
michelu89 committed Sep 27, 2023
1 parent 7a95a78 commit 4a5566b
Show file tree
Hide file tree
Showing 93 changed files with 2,133 additions and 1,452 deletions.
1 change: 1 addition & 0 deletions core/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
8 changes: 4 additions & 4 deletions core/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"root": true,
"ignorePatterns": ["**/*"],
"plugins": ["@nrwl/nx"],
"plugins": ["@nx"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {
"@nrwl/nx/enforce-module-boundaries": [
"@nx/enforce-module-boundaries": [
"off",
{
"enforceBuildableLibDependency": true,
Expand All @@ -23,7 +23,7 @@
},
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nrwl/nx/typescript"],
"extends": ["plugin:@nx/typescript"],
"rules": {
"no-prototype-builtins": "off",
"@typescript-eslint/no-explicit-any": "off",
Expand All @@ -41,7 +41,7 @@
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nrwl/nx/javascript"],
"extends": ["plugin:@nx/javascript"],
"rules": {}
}
]
Expand Down
Loading

0 comments on commit 4a5566b

Please sign in to comment.