diff --git a/CHANGELOG.md b/CHANGELOG.md index 55cf320..31d0e40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [1.1.0 - 2024-10-11] +## [1.1.0 - 2024-11-06] ### Added - Dockerfile - Single Spa @@ -65,3 +65,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - VUE_APP_PUBLIC_PATH - Nginx conf - Config Loader +- Human Readable to bridgehead diff --git a/src/components/BridgeheadOverview.vue b/src/components/BridgeheadOverview.vue index eae2ea9..758b1c0 100644 --- a/src/components/BridgeheadOverview.vue +++ b/src/components/BridgeheadOverview.vue @@ -23,7 +23,7 @@
{{ bridgehead.bridgehead }}
+ >{{ bridgehead.humanReadable }}
diff --git a/src/components/DocumentsTable.vue b/src/components/DocumentsTable.vue index 0ac7ecb..0e2ea2f 100644 --- a/src/components/DocumentsTable.vue +++ b/src/components/DocumentsTable.vue @@ -92,7 +92,7 @@ export default class DocumentsTable extends Vue { {{ projectDocument.originalFilename }} {{ projectDocument.url }} {{ projectDocument.createdAt }} - {{ projectDocument.bridgehead }} + {{ projectDocument.humanReadableBridgehead }} {{ projectDocument.creatorEmail }} {{ projectDocument.type }} diff --git a/src/components/UserInput.vue b/src/components/UserInput.vue index 12eaa35..25202a1 100644 --- a/src/components/UserInput.vue +++ b/src/components/UserInput.vue @@ -14,6 +14,7 @@ import { interface User { email: string; bridgehead: string; + humanReadableBridgehead: string | null; projectRole: string; projectState: string; } @@ -128,7 +129,7 @@ export default class UserInput extends Vue {
@@ -156,7 +157,7 @@ export default class UserInput extends Vue { {{ user.email }} - {{ user.bridgehead }} + {{ user.humanReadableBridgehead }} {{ user.projectState }} diff --git a/src/services/projectManagerBackendService.ts b/src/services/projectManagerBackendService.ts index 11a2260..397bd91 100644 --- a/src/services/projectManagerBackendService.ts +++ b/src/services/projectManagerBackendService.ts @@ -157,6 +157,7 @@ export interface Notification { timestamp: Date | null; projectCode: string | null; bridgehead: string | null; + humanReadableBridgehead: string | null; operationType: string | null; details: string | null; error: string | null; @@ -167,6 +168,7 @@ export interface Notification { export interface Bridgehead { projectCode: string; bridgehead: string; + humanReadable: string | null; state: string; modifiedAt: string; queryState: string; @@ -178,6 +180,7 @@ export interface ProjectDocument { url: string; createdAt: string; bridgehead: string; + humanReadableBridgehead: string | null; creatorEmail: string; label: string; type: string;