@scm-manager/ui-extensions 2.36.0 → 2.36.1-20220521-085821

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/binder.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scm-manager/ui-extensions",
3
- "version": "2.36.0",
3
+ "version": "2.36.1-20220521-085821",
4
4
  "main": "src/index.ts",
5
5
  "license": "MIT",
6
6
  "private": false,
@@ -10,7 +10,7 @@
10
10
  "test": "jest"
11
11
  },
12
12
  "dependencies": {
13
- "@scm-manager/ui-types": "^2.36.0",
13
+ "@scm-manager/ui-types": "^2.36.1-20220521-085821",
14
14
  "react": "^17.0.1"
15
15
  },
16
16
  "devDependencies": {
package/src/binder.ts CHANGED
@@ -133,7 +133,7 @@ export class Binder {
133
133
  predicate,
134
134
  extension,
135
135
  extensionName: extensionName ? extensionName : "",
136
- priority,
136
+ priority: priority || 0,
137
137
  } as ExtensionRegistration<E["props"], E["type"]>;
138
138
  this.extensionPoints[extensionPoint].push(registration);
139
139
  }