Skip to content

Commit bb7928b

Browse files
michelu89atextor
andauthored
Fix/several bugs (#88)
* Update and fix the documentation * Fix several bugs * 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 --------- Co-authored-by: Andreas Textor <[email protected]>
1 parent 48dd8c0 commit bb7928b

File tree

117 files changed

+2326
-1574
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+2326
-1574
lines changed

core/.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

core/.eslintrc.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"root": true,
33
"ignorePatterns": ["**/*"],
4-
"plugins": ["@nrwl/nx"],
4+
"plugins": ["@nx"],
55
"overrides": [
66
{
77
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
88
"rules": {
9-
"@nrwl/nx/enforce-module-boundaries": [
9+
"@nx/enforce-module-boundaries": [
1010
"off",
1111
{
1212
"enforceBuildableLibDependency": true,
@@ -23,7 +23,7 @@
2323
},
2424
{
2525
"files": ["*.ts", "*.tsx"],
26-
"extends": ["plugin:@nrwl/nx/typescript"],
26+
"extends": ["plugin:@nx/typescript"],
2727
"rules": {
2828
"no-prototype-builtins": "off",
2929
"@typescript-eslint/no-explicit-any": "off",
@@ -41,7 +41,7 @@
4141
},
4242
{
4343
"files": ["*.js", "*.jsx"],
44-
"extends": ["plugin:@nrwl/nx/javascript"],
44+
"extends": ["plugin:@nx/javascript"],
4545
"rules": {}
4646
}
4747
]

0 commit comments

Comments
 (0)