diff --git a/gitb-ui/app/models/Constants.scala b/gitb-ui/app/models/Constants.scala
index 8bc493f2..774c7134 100644
--- a/gitb-ui/app/models/Constants.scala
+++ b/gitb-ui/app/models/Constants.scala
@@ -71,6 +71,6 @@ object Constants {
// When ending in "-snapshot", this is considered a non-published release.
val VersionNumber = "1.24.1"
- val VersionNumberPostfixForResources = ""
+ val VersionNumberPostfixForResources = ".1"
}
diff --git a/gitb-ui/ui/src/app/components/breadcrumb/breadcrumb.component.html b/gitb-ui/ui/src/app/components/breadcrumb/breadcrumb.component.html
index 7fa4bcff..d1eefb9a 100644
--- a/gitb-ui/ui/src/app/components/breadcrumb/breadcrumb.component.html
+++ b/gitb-ui/ui/src/app/components/breadcrumb/breadcrumb.component.html
@@ -1,5 +1,5 @@
@if (dataService.showNavigationControls) {
-
+
@if (breadcrumbs != undefined) {
@for (crumb of breadcrumbsToShow; track $index) {
@if (crumb.label != undefined) {
diff --git a/gitb-ui/ui/src/app/components/pending-block/pending-block.component.html b/gitb-ui/ui/src/app/components/pending-block/pending-block.component.html
index b99090b4..92e8c002 100644
--- a/gitb-ui/ui/src/app/components/pending-block/pending-block.component.html
+++ b/gitb-ui/ui/src/app/components/pending-block/pending-block.component.html
@@ -1,5 +1,5 @@
@if (pending) {
-
+
@if (!pending || !icon) {
}
diff --git a/gitb-ui/ui/src/app/components/pending-block/pending-block.component.ts b/gitb-ui/ui/src/app/components/pending-block/pending-block.component.ts
index 9b7612ea..709d41e8 100644
--- a/gitb-ui/ui/src/app/components/pending-block/pending-block.component.ts
+++ b/gitb-ui/ui/src/app/components/pending-block/pending-block.component.ts
@@ -2,12 +2,14 @@ import { Component, Input } from '@angular/core';
@Component({
selector: 'app-pending-block',
- templateUrl: './pending-block.component.html'
+ templateUrl: './pending-block.component.html',
+ styles: '.large { font-size: xx-large; }'
})
export class PendingBlockComponent {
@Input() pending = true
@Input() icon = false
+ @Input() large = false
constructor() { }
diff --git a/gitb-ui/ui/src/app/pages/home/home.component.html b/gitb-ui/ui/src/app/pages/home/home.component.html
index 4b4c1447..710afe51 100644
--- a/gitb-ui/ui/src/app/pages/home/home.component.html
+++ b/gitb-ui/ui/src/app/pages/home/home.component.html
@@ -3,7 +3,7 @@
@if (pageContent == undefined) {
-
+
} @else {
}
diff --git a/gitb-ui/ui/src/app/pages/index/index.component.html b/gitb-ui/ui/src/app/pages/index/index.component.html
index 1eb1eae2..01e7d563 100644
--- a/gitb-ui/ui/src/app/pages/index/index.component.html
+++ b/gitb-ui/ui/src/app/pages/index/index.component.html
@@ -23,9 +23,15 @@
@if (dataService.showNavigationControls) {
-
+
}
-
+ @if (logoutInProgress) {
+
+ }
+
@if (dataService.showNavigationControls) {
}
-
+ @if (!dataService.showNavigationControls && isAuthenticated() && !logoutInProgress) {
+
+ }
+
@@ -92,14 +105,4 @@
-
-
- @if (loginInProgress) {
-
- } @else if (dataService.configuration) {
+ @if (!loginInProgress && dataService.configuration) {
@if (dataService.configuration.ssoEnabled && dataService.actualUser != undefined) {