@scm-manager/ui-components 3.11.7 → 3.11.8-20260231-105003
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.
- package/package.json +12 -12
- package/src/Breadcrumb.tsx +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scm-manager/ui-components",
|
|
3
|
-
"version": "3.11.
|
|
3
|
+
"version": "3.11.8-20260231-105003",
|
|
4
4
|
"description": "UI Components for SCM-Manager and its plugins",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"files": [
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"react-query": "^3.39.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@scm-manager/ui-tests": "3.11.
|
|
36
|
-
"@scm-manager/ui-types": "3.11.
|
|
35
|
+
"@scm-manager/ui-tests": "3.11.8-20260231-105003",
|
|
36
|
+
"@scm-manager/ui-types": "3.11.8-20260231-105003",
|
|
37
37
|
"@types/fetch-mock": "^7.3.1",
|
|
38
38
|
"@types/react-select": "^2.0.19",
|
|
39
39
|
"@types/unist": "^2.0.3",
|
|
@@ -68,17 +68,17 @@
|
|
|
68
68
|
"@scm-manager/jest-preset": "^2.14.1",
|
|
69
69
|
"@scm-manager/prettier-config": "^2.12.0",
|
|
70
70
|
"@scm-manager/tsconfig": "^2.13.0",
|
|
71
|
-
"@scm-manager/ui-syntaxhighlighting": "3.11.
|
|
72
|
-
"@scm-manager/ui-shortcuts": "3.11.
|
|
73
|
-
"@scm-manager/ui-text": "3.11.
|
|
71
|
+
"@scm-manager/ui-syntaxhighlighting": "3.11.8-20260231-105003",
|
|
72
|
+
"@scm-manager/ui-shortcuts": "3.11.8-20260231-105003",
|
|
73
|
+
"@scm-manager/ui-text": "3.11.8-20260231-105003"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@scm-manager/ui-core": "3.11.
|
|
77
|
-
"@scm-manager/ui-overlays": "3.11.
|
|
78
|
-
"@scm-manager/ui-layout": "3.11.
|
|
79
|
-
"@scm-manager/ui-buttons": "3.11.
|
|
80
|
-
"@scm-manager/ui-api": "3.11.
|
|
81
|
-
"@scm-manager/ui-extensions": "3.11.
|
|
76
|
+
"@scm-manager/ui-core": "3.11.8-20260231-105003",
|
|
77
|
+
"@scm-manager/ui-overlays": "3.11.8-20260231-105003",
|
|
78
|
+
"@scm-manager/ui-layout": "3.11.8-20260231-105003",
|
|
79
|
+
"@scm-manager/ui-buttons": "3.11.8-20260231-105003",
|
|
80
|
+
"@scm-manager/ui-api": "3.11.8-20260231-105003",
|
|
81
|
+
"@scm-manager/ui-extensions": "3.11.8-20260231-105003",
|
|
82
82
|
"deepmerge": "^4.2.2",
|
|
83
83
|
"hast-util-sanitize": "^3.0.2",
|
|
84
84
|
"react-diff-view": "^2.4.10",
|
package/src/Breadcrumb.tsx
CHANGED
|
@@ -268,7 +268,8 @@ const Breadcrumb: FC<Props> = ({
|
|
|
268
268
|
const renderExtensionPoints = () => {
|
|
269
269
|
if (
|
|
270
270
|
binder.hasExtension<extensionPoints.ReposSourcesEmptyActionbar>("repos.sources.empty.actionbar", extProps) &&
|
|
271
|
-
sources?._embedded?.children?.length === 0
|
|
271
|
+
sources?._embedded?.children?.length === 0 &&
|
|
272
|
+
(repository.type !== "git" || sources.revision === "HEAD")
|
|
272
273
|
) {
|
|
273
274
|
return (
|
|
274
275
|
<ExtensionPoint<extensionPoints.ReposSourcesEmptyActionbar>
|